summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/util/credentials.py
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2014-05-23 14:37:26 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2014-05-23 14:37:26 -0300
commit8b2a0b62bab158417babd0182d4dc00adf8ec521 (patch)
tree53bfb94e240cbcb68fbccf16d62566400204d1e5 /src/leap/bitmask/util/credentials.py
parentbafcfbbfb571f537c0c621f6ea0eba7e183522a2 (diff)
Allow usernames to end in a digit.
Diffstat (limited to 'src/leap/bitmask/util/credentials.py')
-rw-r--r--src/leap/bitmask/util/credentials.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/util/credentials.py b/src/leap/bitmask/util/credentials.py
index a661bfb0..07ded17b 100644
--- a/src/leap/bitmask/util/credentials.py
+++ b/src/leap/bitmask/util/credentials.py
@@ -21,7 +21,7 @@ Credentials utilities
from PySide import QtCore, QtGui
WEAK_PASSWORDS = ("123456", "qweasd", "qwerty", "password")
-USERNAME_REGEX = r"^[A-Za-z][A-Za-z\d_\-\.]+[A-Za-z]$"
+USERNAME_REGEX = r"^[A-Za-z][A-Za-z\d_\-\.]+[A-Za-z\d]$"
USERNAME_VALIDATOR = QtGui.QRegExpValidator(QtCore.QRegExp(USERNAME_REGEX))