From b739d42509f1486bfacfd42c59138323afcd58d8 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 20 Jun 2019 18:07:59 +0200 Subject: [PATCH] Fix typo --- pgweb/account/oauthclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgweb/account/oauthclient.py b/pgweb/account/oauthclient.py index e6765a0f..42d0dc25 100644 --- a/pgweb/account/oauthclient.py +++ b/pgweb/account/oauthclient.py @@ -204,5 +204,5 @@ def login_oauth(request, provider): except OAuthException as e: return HttpResponse(e) except Exception as e: - log.error('Excpetion during OAuth: %s' % e) + log.error('Exception during OAuth: %s' % e) return HttpResponse('An unhandled exception occurred during the authentication process') -- 2.39.5