Skip to content

Commit

Permalink
fix token generation on pw change
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Sander committed Aug 17, 2017
1 parent af52202 commit 5eb15c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gengine/app/views.py
Expand Up @@ -459,7 +459,7 @@ def change_password(request):

token = AuthToken.generate_token()
tokenObj = AuthToken(
user_id=user.id,
auth_user_id=user.id,
token=token
)
DBSession.add(tokenObj)
Expand Down

0 comments on commit 5eb15c1

Please sign in to comment.