diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-02-20 20:21:22 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-02-20 20:21:22 +0000 |
commit | 26d09b816221ae867b1951015835ba9747d5bba9 (patch) | |
tree | 9edb70b48f03891a20401443b69db2bca52792ca /textw | |
parent | 20ee8b3b12fbe01b13ef4fc3e2cbe7a154e755aa (diff) | |
download | anaconda-26d09b816221ae867b1951015835ba9747d5bba9.tar.gz anaconda-26d09b816221ae867b1951015835ba9747d5bba9.tar.xz anaconda-26d09b816221ae867b1951015835ba9747d5bba9.zip |
nalin sez spaces are fine (#84705)
Diffstat (limited to 'textw')
-rw-r--r-- | textw/userauth_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/userauth_text.py b/textw/userauth_text.py index 466f336f6..5a7a2e776 100644 --- a/textw/userauth_text.py +++ b/textw/userauth_text.py @@ -18,7 +18,7 @@ import iutil from flags import flags def has_bad_chars(pw): - allowed = string.digits + string.ascii_letters + string.punctuation + allowed = string.digits + string.ascii_letters + string.punctuation + " " for letter in pw: if letter not in allowed: return 1 |