[svn] Use the django compatability thing - webserver might have old python on it....

This commit is contained in:
pjrharley
2009-05-23 21:13:53 +01:00
parent 0508ba299c
commit 14b39d906c
2 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
import datetime
import random
import re
import hashlib
from django.utils.hashcompat import sha_constructor
from django.conf import settings
from django.contrib.auth.models import User
@@ -152,8 +152,8 @@ class RegistrationManager(models.Manager):
username and a random salt.
"""
salt = hashlib.sha1(str(random.random())).hexdigest()[:5]
activation_key = hashlib.sha1(salt+user.username).hexdigest()
salt = sha_constructor(str(random.random())).hexdigest()[:5]
activation_key = sha_constructor(salt+user.username).hexdigest()
return self.create(user=user,
activation_key=activation_key)