summaryrefslogtreecommitdiffstats
path: root/django_authopenid/models.py
diff options
context:
space:
mode:
authorMike Chen <chagel@gmail.com>2009-07-05 22:23:43 +0800
committerMike Chen <chagel@gmail.com>2009-07-05 22:23:43 +0800
commit4d3d4fc3fffbda4e2d6e111305f84fab915c0a75 (patch)
treef64a43e1c74b4d72ba06f150d472441ad82334d1 /django_authopenid/models.py
parent519c3f865a8a0448caf8771371a1dc2ae63a62ac (diff)
downloadaskbot-4d3d4fc3fffbda4e2d6e111305f84fab915c0a75.tar.gz
askbot-4d3d4fc3fffbda4e2d6e111305f84fab915c0a75.tar.bz2
askbot-4d3d4fc3fffbda4e2d6e111305f84fab915c0a75.zip
add Chinese message files to move out localiztion
Diffstat (limited to 'django_authopenid/models.py')
-rw-r--r--django_authopenid/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django_authopenid/models.py b/django_authopenid/models.py
index 9826c452..e6fb8111 100644
--- a/django_authopenid/models.py
+++ b/django_authopenid/models.py
@@ -3,7 +3,7 @@ from django.conf import settings
from django.contrib.auth.models import User
from django.db import models
-import md5, random, sys, os, time
+import hashlib, random, sys, os, time
__all__ = ['Nonce', 'Association', 'UserAssociation',
'UserPasswordQueueManager', 'UserPasswordQueue']
@@ -47,7 +47,7 @@ class UserPasswordQueueManager(models.Manager):
# The random module is seeded when this Apache child is created.
# Use SECRET_KEY as added salt.
while 1:
- confirm_key = md5.new("%s%s%s%s" % (
+ confirm_key = hashlib.md5("%s%s%s%s" % (
random.randint(0, sys.maxint - 1), os.getpid(),
time.time(), settings.SECRET_KEY)).hexdigest()
try: