diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-08-24 19:03:46 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-08-24 19:03:46 +0000 |
commit | 32b52c38b54ce27478c1d514711c4580ec4652f6 (patch) | |
tree | 2399afa0bcef53bf608a67b23e9a649d01ab381c | |
parent | bec5e7cd6edd5b66b8f58e054e30e29e8eb430f2 (diff) | |
download | anaconda-32b52c38b54ce27478c1d514711c4580ec4652f6.tar.gz anaconda-32b52c38b54ce27478c1d514711c4580ec4652f6.tar.xz anaconda-32b52c38b54ce27478c1d514711c4580ec4652f6.zip |
let user passwords be arbitrary lengths (52330)
-rw-r--r-- | iw/account_gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/account_gui.py b/iw/account_gui.py index 191ccb189..22c5d5a8a 100644 --- a/iw/account_gui.py +++ b/iw/account_gui.py @@ -197,10 +197,10 @@ class AccountWindow (InstallWindow): userTable.attach(self.accountName, 1, 2, 0, 1, SHRINK, SHRINK) self.fullName = GtkEntry () userTable.attach(self.fullName, 1, 2, 1, 2, SHRINK, SHRINK) - self.userPass1 = GtkEntry (9) + self.userPass1 = GtkEntry () self.userPass1.set_visibility(FALSE) userTable.attach(self.userPass1, 1, 2, 2, 3, SHRINK, SHRINK) - self.userPass2 = GtkEntry (9) + self.userPass2 = GtkEntry () self.userPass2.set_visibility(FALSE) userTable.attach (self.userPass2, 1, 2, 3, 4, SHRINK, SHRINK) |