From 216e1c06849f480c7cdbfc53320d1017aef62ab9 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Mon, 6 Sep 2021 21:23:54 +0200 Subject: [PATCH] fix --- auth.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/auth.py b/auth.py index b685968..66c8f8b 100755 --- a/auth.py +++ b/auth.py @@ -364,8 +364,8 @@ def refreshTokens(**args): except KeyError: logger.error("application, login or password missing") raise werkzeug.exceptions.Unauthorized() - #except Exception as e: - # logger.error("unspecific exception: {}".format(str(e))) - # raise werkzeug.exceptions.Unauthorized() + except Exception as e: + logger.error("unspecific exception: {}".format(str(e))) + raise werkzeug.exceptions.Unauthorized()