From 7f7f40712d04f70643b4dd31b7bd67d5e1b19859 Mon Sep 17 00:00:00 2001 From: Paul Brinkmeier Date: Sun, 20 Aug 2023 12:03:07 +0200 Subject: [PATCH] Fix typo --- jon/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jon/auth.py b/jon/auth.py index cfe8916..ec97056 100644 --- a/jon/auth.py +++ b/jon/auth.py @@ -19,7 +19,7 @@ def before_request(): """ If the correct token query parameter is passed along with any request, we mark this session authenticated by setting `session["authenticated"]`. - Unless the session is authenticated, all requests results in a 403 FORBIDDEN. + Unless the session is authenticated, all requests result in a 403 FORBIDDEN. """ if "token" in request.args: if request.args["token"] == ACCESS_TOKEN: