summaryrefslogtreecommitdiffstats
path: root/textw/userauth_text.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-02-05 23:21:07 +0000
committerJeremy Katz <katzj@redhat.com>2002-02-05 23:21:07 +0000
commite9502e3df6620a81870990e6f69b4b0df575e851 (patch)
tree9eca2cdd82da4d5ae347c99d2a9911079d7a8fee /textw/userauth_text.py
parent705f7ea03703e5bd38d221c913f77816dbbc178f (diff)
downloadanaconda-e9502e3df6620a81870990e6f69b4b0df575e851.tar.gz
anaconda-e9502e3df6620a81870990e6f69b4b0df575e851.tar.xz
anaconda-e9502e3df6620a81870990e6f69b4b0df575e851.zip
make the username field only 16 characters so it's not longer than the fullname (#59342)
Diffstat (limited to 'textw/userauth_text.py')
-rw-r--r--textw/userauth_text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/userauth_text.py b/textw/userauth_text.py
index f6ce53335..6c6660251 100644
--- a/textw/userauth_text.py
+++ b/textw/userauth_text.py
@@ -80,7 +80,7 @@ class UsersWindow:
'mailnull', 'rpm', 'ident', 'rpc', 'rpcuser', 'radvd', 'xfs', 'gdm', 'apache',
'squid']
- username = Entry (32, user["id"], scroll=0)
+ username = Entry (16, user["id"], scroll=0)
currentid = user["id"]
pass1 = Entry (10, user["password"], password = 1)
pass2 = Entry (10, user["password"], password = 1)