diff options
author | Matt Wilson <msw@redhat.com> | 2001-04-02 22:50:28 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-04-02 22:50:28 +0000 |
commit | aad8e61e3f7d5e583d72e13678cd6fdf155b4e56 (patch) | |
tree | 3a905eb4d9f53898e3b8aa6df89e702930ad9143 /text.py | |
parent | a2554f147425c353205b5f264a5947f58a97fae4 (diff) | |
download | anaconda-aad8e61e3f7d5e583d72e13678cd6fdf155b4e56.tar.gz anaconda-aad8e61e3f7d5e583d72e13678cd6fdf155b4e56.tar.xz anaconda-aad8e61e3f7d5e583d72e13678cd6fdf155b4e56.zip |
fix for traceback if you pass lang= to the boot disk and go into a language with translated lists of languages
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ class LanguageWindow: ListboxChoiceWindow(screen, _("Language Selection"), _("What language would you like to use during the " "installation process?"), translated, - buttons, width = 30, default = current, scroll = 1, + buttons, width = 30, default = _(current), scroll = 1, height = height, help = "lang") if (button == string.lower(_("Back"))): return INSTALL_BACK |