My django runs on FastCGI as I can see.
I have that small part of the code:
# Generate user register_hash
import hashlib
reg_hash = hashlib.md5()
reg_hash.update(request.POST.get('email') +
str(random.random()) + request.POST.get('username'))
reg_hash = reg_hash.hexdigest()
Is there any sesne to load hashlib on the top? It's used once, when user is
created.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.