From 4d3d4fc3fffbda4e2d6e111305f84fab915c0a75 Mon Sep 17 00:00:00 2001 From: Mike Chen Date: Sun, 5 Jul 2009 22:23:43 +0800 Subject: add Chinese message files to move out localiztion --- django_authopenid/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'django_authopenid/util.py') diff --git a/django_authopenid/util.py b/django_authopenid/util.py index 841a81c7..54c1246b 100644 --- a/django_authopenid/util.py +++ b/django_authopenid/util.py @@ -15,7 +15,7 @@ try: except: from yadis import xri -import time, base64, md5, operator +import time, base64, hashlib, operator import urllib from models import Association, Nonce @@ -128,7 +128,7 @@ class DjangoOpenIDStore(OpenIDStore): def getAuthKey(self): # Use first AUTH_KEY_LEN characters of md5 hash of SECRET_KEY - return md5.new(settings.SECRET_KEY).hexdigest()[:self.AUTH_KEY_LEN] + return hashlib.md5(settings.SECRET_KEY).hexdigest()[:self.AUTH_KEY_LEN] def isDumb(self): return False -- cgit v1.2.3-1-g7c22