From: Loic Baron Date: Wed, 6 Apr 2016 12:19:31 +0000 (+0200) Subject: typo in actions X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=commitdiff_plain;h=9705f5da9de332ff1a4f2964bc0f617c6982778a typo in actions --- diff --git a/portal/actions.py b/portal/actions.py index 516f9635..a0509dcf 100644 --- a/portal/actions.py +++ b/portal/actions.py @@ -1287,7 +1287,7 @@ def create_pending_user(wsgi_request, request, user_detail): # saves the user to django auth_user table [needed for password reset] # Django username must be less than 30 char so we use a hash - user = User.objects.create_user(hashlib.sha1(request['email'].hexdigest(), request['email'], request['password']) + user = User.objects.create_user(hashlib.sha1(request['email'].hexdigest()), request['email'], request['password']) # Creating a manifold user user_id = manifold_add_user(wsgi_request, request)