From 9705f5da9de332ff1a4f2964bc0f617c6982778a Mon Sep 17 00:00:00 2001 From: Loic Baron Date: Wed, 6 Apr 2016 14:19:31 +0200 Subject: [PATCH] typo in actions --- portal/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.43.0