Only validate email if it was provided
This commit is contained in:
parent
1b1332a42d
commit
02e7065b21
|
@ -96,7 +96,7 @@ def create_user(username, displayname, email):
|
||||||
# Validate arguments
|
# Validate arguments
|
||||||
if not valid_username(username):
|
if not valid_username(username):
|
||||||
raise ValueError("Invalid username: '{}'".format(username))
|
raise ValueError("Invalid username: '{}'".format(username))
|
||||||
if not valid_email(email):
|
if email and not valid_email(email):
|
||||||
raise ValueError("Invalid email: '{}'".format(email))
|
raise ValueError("Invalid email: '{}'".format(email))
|
||||||
|
|
||||||
# Create the user directory and initialize it with a blank user
|
# Create the user directory and initialize it with a blank user
|
||||||
|
|
Loading…
Reference in New Issue