From 901d9c66c5df0006f0773c192dfec1df35ec0476 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 23 Nov 2020 10:18:52 +0000 Subject: [PATCH] Lower case --- auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth.py b/auth.py index e21d58a46..f0124f550 100644 --- a/auth.py +++ b/auth.py @@ -112,7 +112,7 @@ def authorizeBasic(baseDir: str, path: str, authHeader: str, plain = base64.b64decode(base64Str).decode('utf-8') if ':' not in plain: if debug: - print('DEBUG: basic Auth header does not contain a ":" ' + + print('DEBUG: basic auth header does not contain a ":" ' + 'separator for username:password') return False nickname = plain.split(':')[0]