diff options
author | Frederick Muriuki Muriithi | 2024-08-05 17:22:10 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-08-05 17:23:43 -0500 |
commit | 0998033d0a7ea26ed96b00a360a334bae6de8c55 (patch) | |
tree | e252c88919621d399e246bfe897e07622413ed87 | |
parent | 053dc5d1a3a30b5ff3f1d4bd1201af82860ccd07 (diff) | |
download | genenetwork2-0998033d0a7ea26ed96b00a360a334bae6de8c55.tar.gz |
Fix typo.
-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("/") |