1
0
mirror of https://github.com/django/django.git synced 2025-06-05 03:29:12 +00:00

Fixed #10025 -- Corrected two minor typos in source documentation. Thanks to Tarken for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9861 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2009-02-22 06:08:37 +00:00
parent f1e8d24e0c
commit 39dd44570c

View File

@ -4,7 +4,7 @@ from django.utils.http import int_to_base36, base36_to_int
class PasswordResetTokenGenerator(object): class PasswordResetTokenGenerator(object):
""" """
Stratgy object used to generate and check tokens for the password Strategy object used to generate and check tokens for the password
reset mechanism. reset mechanism.
""" """
def make_token(self, user): def make_token(self, user):
@ -18,7 +18,7 @@ class PasswordResetTokenGenerator(object):
""" """
Check that a password reset token is correct for a given user. Check that a password reset token is correct for a given user.
""" """
# Parse the tokem # Parse the token
try: try:
ts_b36, hash = token.split("-") ts_b36, hash = token.split("-")
except ValueError: except ValueError: