summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-01-24 20:01:59 +0000
committerMatt Wilson <msw@redhat.com>2001-01-24 20:01:59 +0000
commitc4a9923759f611a6e54f926100919b605ad4ae16 (patch)
tree17db65e3b581bb2a09d3df6cecf2837c771844dc /text.py
parent5072e79340af2848eb8e69bbde5273c9ba2d1250 (diff)
downloadanaconda-c4a9923759f611a6e54f926100919b605ad4ae16.tar.gz
anaconda-c4a9923759f611a6e54f926100919b605ad4ae16.tar.xz
anaconda-c4a9923759f611a6e54f926100919b605ad4ae16.zip
use the locale names, not the descriptions
Diffstat (limited to 'text.py')
-rw-r--r--text.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/text.py b/text.py
index b1eaf56a3..d3fd8be4f 100644
--- a/text.py
+++ b/text.py
@@ -172,7 +172,10 @@ class LanguageSupportWindow:
if todo.language.getSupported () == descriptions:
todo.language.setSupported (None)
else:
- todo.language.setSupported (ct.getSelection())
+ langs = []
+ for lang in ct.getSelection():
+ langs.append (languages[lang])
+ todo.language.setSupported (langs)
return INSTALL_OK