summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-07-03 06:03:34 +0000
committerJeremy Katz <katzj@redhat.com>2002-07-03 06:03:34 +0000
commit683a0236251f077f140a7641724b708cc3233835 (patch)
tree2872065c6bd4c452d1b60c12a4abf234e130753a /textw
parent4d8e615378d1728d1a727d8a568087c91d5a09ee (diff)
downloadanaconda-683a0236251f077f140a7641724b708cc3233835.tar.gz
anaconda-683a0236251f077f140a7641724b708cc3233835.tar.xz
anaconda-683a0236251f077f140a7641724b708cc3233835.zip
consistency of field order (#67838)
Diffstat (limited to 'textw')
-rw-r--r--textw/userauth_text.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/textw/userauth_text.py b/textw/userauth_text.py
index 6bdbb7a33..cc4d409b9 100644
--- a/textw/userauth_text.py
+++ b/textw/userauth_text.py
@@ -96,9 +96,9 @@ class UsersWindow:
while 1:
(rc, ent) = EntryWindow (self.screen, title, text,
[ (_("User Name"), username),
- (_("Full Name"), fullname),
(_("Password"), pass1),
- (_("Password (confirm)"), pass2)],
+ (_("Password (confirm)"), pass2),
+ (_("Full Name"), fullname)],
buttons = [ TEXT_OK_BUTTON, (cancelText, "cancel") ],
help = helptag)