Lower case

main
Bob Mottram 2020-11-23 10:18:52 +00:00
parent 99abc1f1f4
commit 901d9c66c5
1 changed files with 1 additions and 1 deletions

View File

@ -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]