summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorbfox <bfox>2001-09-21 19:36:34 +0000
committerbfox <bfox>2001-09-21 19:36:34 +0000
commit1f69a30f88013c92bb0d2cabb11d5d9058ae10ec (patch)
tree7b0e66cab9daf910b978726d5094e56b23990e11 /iutil.py
parent0fe41b216eaade4eda1bbdb7280ad656722de09e (diff)
downloadanaconda-1f69a30f88013c92bb0d2cabb11d5d9058ae10ec.tar.gz
anaconda-1f69a30f88013c92bb0d2cabb11d5d9058ae10ec.tar.xz
anaconda-1f69a30f88013c92bb0d2cabb11d5d9058ae10ec.zip
remove 8 char limit on usernames. Resolves bug 27011help
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/iutil.py b/iutil.py
index c2d15abda..b1c0a3bd6 100644
--- a/iutil.py
+++ b/iutil.py
@@ -318,9 +318,6 @@ def rmrf (path):
os.rmdir (path)
def validUser (user):
- if len (user) > 8:
- return 0
-
if not user[0] in string.letters:
return 0