This commit is contained in:
Khanh Ngo 2018-04-10 07:08:22 +07:00
parent 060e0917bc
commit fdf849744b

View File

@ -118,7 +118,7 @@ def login_via_authorization_header(request):
if auth_header:
auth_header = auth_header.replace('Basic ', '', 1)
try:
auth_header = base64.b64decode(auth_header)
auth_header = str(base64.b64decode(auth_header), 'utf-8')
username,password = auth_header.split(":")
except TypeError as e:
return None