summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-04-02 22:50:28 +0000
committerMatt Wilson <msw@redhat.com>2001-04-02 22:50:28 +0000
commitaad8e61e3f7d5e583d72e13678cd6fdf155b4e56 (patch)
tree3a905eb4d9f53898e3b8aa6df89e702930ad9143 /text.py
parenta2554f147425c353205b5f264a5947f58a97fae4 (diff)
downloadanaconda-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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.py b/text.py
index 5b3236014..2e053a6ff 100644
--- a/text.py
+++ b/text.py
@@ -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