Modify condition on empty localpart

pull/2213/head
Luke Barnard 2017-05-10 17:34:30 +01:00
parent 369195caa5
commit ccad2ed824
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class RegistrationHandler(BaseHandler):
Codes.INVALID_USERNAME Codes.INVALID_USERNAME
) )
if len(localpart) == 0: if not localpart:
raise SynapseError( raise SynapseError(
400, 400,
"User ID cannot be empty", "User ID cannot be empty",