From a3ddb35fe76252fd95dc8754a1e10b72c8a1d3fb Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 2 Aug 2024 08:06:41 -0700 Subject: [PATCH] comments --- notifications_utils/request_helper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notifications_utils/request_helper.py b/notifications_utils/request_helper.py index 6d570fe06..9ac35dfcf 100644 --- a/notifications_utils/request_helper.py +++ b/notifications_utils/request_helper.py @@ -80,9 +80,9 @@ class ResponseHeaderMiddleware(object): return self._app(environ, rewrite_response_headers) except BaseException as be: # noqa - if "AuthError" in str(be): + if "AuthError" in str(be): #notify-api-1135 current_app.logger.error(be) - elif "AttributeError" in str(be): + elif "AttributeError" in str(be): #notify-api-1394 current_app.logger.error(be) else: raise be