Adding a small docstring

This commit is contained in:
Christopher Allan Webber 2011-09-07 23:51:41 -05:00
parent 4185e644f4
commit 961fe38163

View File

@ -243,6 +243,10 @@ def forgot_password(request):
def verify_forgot_password(request): def verify_forgot_password(request):
"""
Check the forgot-password verification and possibly let the user
change their password because of it.
"""
# get session variables, and specifically check for presence of token # get session variables, and specifically check for presence of token
mysession = _process_for_token(request) mysession = _process_for_token(request)
if not mysession['has_userid_and_token']: if not mysession['has_userid_and_token']: