diff options
author | Erik Troan <ewt@redhat.com> | 2000-05-10 23:45:29 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-05-10 23:45:29 +0000 |
commit | 1f18826974966a593015f79f69b3b7ff11c41fdf (patch) | |
tree | 5768385b97382866f8d893684dd0e47bcbf76503 /textw/userauth_text.py | |
parent | e6fd48b728c3acb3cf08bd70a0d40041ad83c772 (diff) | |
download | anaconda-1f18826974966a593015f79f69b3b7ff11c41fdf.tar.gz anaconda-1f18826974966a593015f79f69b3b7ff11c41fdf.tar.xz anaconda-1f18826974966a593015f79f69b3b7ff11c41fdf.zip |
separated help tags for add user and edit user
Diffstat (limited to 'textw/userauth_text.py')
-rw-r--r-- | textw/userauth_text.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/textw/userauth_text.py b/textw/userauth_text.py index e5d9380c0..eaa87aba7 100644 --- a/textw/userauth_text.py +++ b/textw/userauth_text.py @@ -70,8 +70,10 @@ class UsersWindow: if edit: title = _("Edit User") + helptag = "edituser" else: title = _("Add User") + helptag = "newuser" while 1: (rc, ent) = EntryWindow (self.screen, title, text, @@ -80,7 +82,7 @@ class UsersWindow: (_("Password"), pass1), (_("Password (confirm)"), pass2) ], buttons = [ (_("OK"), "ok"), (cancelText, "cancel") ], - help = "edituser") + help = helptag) if rc == "cancel": return INSTALL_BACK |