server/users: fix checking passwords with colons

This commit is contained in:
rr- 2018-02-10 14:03:43 +01:00
parent 59d8b0d4c5
commit a1fbeb91a0

View file

@ -24,7 +24,7 @@ def _get_user(ctx: rest.Context) -> Optional[model.User]:
'ValidationError',
'Only basic HTTP authentication is supported.')
username, password = base64.decodebytes(
credentials.encode('ascii')).decode('utf8').split(':')
credentials.encode('ascii')).decode('utf8').split(':', 1)
return _authenticate(username, password)
except ValueError as err:
msg = (