From 40098fd7f262ee4399b490e2fb7f5448bca948c5 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Tue, 26 Jan 2021 21:08:19 +0100 Subject: database manager (school assignment) --- api/passwords.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'api/passwords.py') 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()) -- cgit v1.2.3