From cb593afd484e55a4914a5c061a9283eb51b0fcce Mon Sep 17 00:00:00 2001 From: Christopher Usher Date: Sun, 3 Nov 2024 00:39:51 -0700 Subject: [PATCH] Fixed bug in authenticate_artist --- thrimshim/thrimshim/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thrimshim/thrimshim/main.py b/thrimshim/thrimshim/main.py index a07c238..4bdc321 100644 --- a/thrimshim/thrimshim/main.py +++ b/thrimshim/thrimshim/main.py @@ -83,7 +83,7 @@ def authenticate_artist(f): @wraps(f) def artist_auth_wrapper(*args, **kwargs): if app.no_authentication: - return f(*args, editor='NOT_AUTH', **kwargs) + return f(*args, artist='NOT_AUTH', **kwargs) message, code = check_user(flask.request, 'artist') if code != 200: