From ca661fb13432132d75493606be050a512ef5b97a Mon Sep 17 00:00:00 2001
From: Maarten de Waard <maarten@greenhost.nl>
Date: Tue, 23 Nov 2021 04:29:51 +0000
Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s)

---
 login/app.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/login/app.py b/login/app.py
index e6b1096..d5e0653 100644
--- a/login/app.py
+++ b/login/app.py
@@ -395,10 +395,10 @@ def auth():
 
 
     # If the user is not logged in yet, we redirect to the login page
-    # but before we do taht, we set the "flow_state" cookie to auth.
-    # so the UI know it has to redirect after successful login.
-    # The redirect URL is back to this page (auth) with the same challenge.
-    # so we can pickup the flow where we left off
+    # but before we do that, we set the "flow_state" cookie to auth.
+    # so the UI knows it has to redirect after a successful login.
+    # The redirect URL is back to this page (auth) with the same challenge
+    # so we can pickup the flow where we left off.
     if not profile:
         url = app.config["PUBLIC_URL"] + "/auth?login_challenge=" + challenge;
         url = urllib.parse.quote_plus(url)
-- 
GitLab