aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/lib/user_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/lib/user_utils.py')
-rw-r--r--newspipe/web/lib/user_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/web/lib/user_utils.py b/newspipe/web/lib/user_utils.py
index 95b436a9..22cf3b6a 100644
--- a/newspipe/web/lib/user_utils.py
+++ b/newspipe/web/lib/user_utils.py
@@ -14,7 +14,7 @@ def confirm_token(token):
nickname = serializer.loads(
token,
salt=application.config["SECURITY_PASSWORD_SALT"],
- max_age=application.config['TOKEN_VALIDITY_PERIOD'],
+ max_age=application.config["TOKEN_VALIDITY_PERIOD"],
)
except:
return False
bgstack15