mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-31 14:33:54 -04:00
Server: Allow hyphens in user names
This commit is contained in:
parent
53c347420f
commit
f90de5d9d7
@ -48,9 +48,9 @@ def serialize_restriction(r):
|
|||||||
|
|
||||||
|
|
||||||
def validate_username(username):
|
def validate_username(username):
|
||||||
if re.sub(r'[a-zA-Z_0-9 ]', '', username):
|
if re.sub(r'[-a-zA-Z_0-9 ]', '', username):
|
||||||
return _('For maximum compatibility you should use only the letters A-Z,'
|
return _('For maximum compatibility you should use only the letters A-Z,'
|
||||||
' the numbers 0-9 and spaces or underscores in the username')
|
' the numbers 0-9, spaces, underscores and hyphens in the username')
|
||||||
|
|
||||||
|
|
||||||
def validate_password(pw):
|
def validate_password(pw):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user