diff options
Diffstat (limited to 'api/passwords.py')
-rw-r--r-- | api/passwords.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/passwords.py b/api/passwords.py index 011400e..e2ae552 100644 --- a/api/passwords.py +++ b/api/passwords.py @@ -7,4 +7,4 @@ def check_password(password, password_hash): return bcrypt.checkpw(enc(password), password_hash) def password_hash(password): - return bcrypt.hashpw(enc(password), bcrypt.gensalt()); + return bcrypt.hashpw(enc(password), bcrypt.gensalt()) |