diff options
author | Frederick Muriuki Muriithi | 2024-08-05 17:22:10 -0500 |
---|---|---|
committer | Alexander_Kabui | 2024-08-28 15:02:46 +0300 |
commit | d48162f73f8cc7792959cbd36e8c4b7f4ccaabd8 (patch) | |
tree | b120336d930e4d1d14bc8f9d5b8830b6a177816a /gn2 | |
parent | 1e5d99454d3df1944f9d2b023ede7664576f278e (diff) | |
download | genenetwork2-d48162f73f8cc7792959cbd36e8c4b7f4ccaabd8.tar.gz |
Fix typo.
Diffstat (limited to 'gn2')
-rw-r--r-- | gn2/wqflask/app_errors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn2/wqflask/app_errors.py b/gn2/wqflask/app_errors.py index bafe773b..b7b8527b 100644 --- a/gn2/wqflask/app_errors.py +++ b/gn2/wqflask/app_errors.py @@ -72,7 +72,7 @@ def handle_oauth_error(exc: OAuthError): flash((f"{type(exc).__name__}: {__build_message__(exc)} " "Please log in again to continue."), "alert-danger") - current_app.logger.error("Invalit token detected. %s", request.url, exc_info=True) + current_app.logger.error("Invalid token detected. %s", request.url, exc_info=True) session.clear_session_info() return redirect("/") |