diff options
author | Sam | 2013-08-28 16:21:12 -0500 |
---|---|---|
committer | Sam | 2013-08-28 16:21:12 -0500 |
commit | cd4d985e7142f92e18f8cf316c72073cb3609a85 (patch) | |
tree | 44d65af727d73b874f407805f30500af3da44c41 /wqflask/flask_security/registerable.py | |
parent | f2e41174a7e2091e7e835b137c6c7e2874feda04 (diff) | |
download | genenetwork2-cd4d985e7142f92e18f8cf316c72073cb3609a85.tar.gz |
Various changes to track down what happens with security modules
Diffstat (limited to 'wqflask/flask_security/registerable.py')
-rw-r--r-- | wqflask/flask_security/registerable.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wqflask/flask_security/registerable.py b/wqflask/flask_security/registerable.py index 4e9f357d..4606c7c6 100644 --- a/wqflask/flask_security/registerable.py +++ b/wqflask/flask_security/registerable.py @@ -24,6 +24,7 @@ _datastore = LocalProxy(lambda: _security.datastore) def register_user(**kwargs): + print "in register_user kwargs:", kwargs confirmation_link, token = None, None kwargs['password'] = encrypt_password(kwargs['password']) user = _datastore.create_user(**kwargs) |