newline replace

master
Bob Mottram 2019-07-03 19:28:43 +01:00
parent be9c2d68d2
commit 0f5592452a
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def authorizeBasic(baseDir: str,authHeader: str) -> bool:
"""
if ' ' not in authHeader:
return False
base64Str = authHeader.split(' ')[1]
base64Str = authHeader.split(' ')[1].replace('\n','')
plain = base64.b64decode(base64Str).decode('utf8')
if ':' not in plain:
return False