diff options
author | Matt Wilson <msw@redhat.com> | 2001-01-24 20:05:35 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-01-24 20:05:35 +0000 |
commit | efbbcdacfcdad30eff2dc13342ef9dae00098dc2 (patch) | |
tree | 4b6ad6546fd83ee8762c7b4010e4045b405844db | |
parent | c4a9923759f611a6e54f926100919b605ad4ae16 (diff) | |
download | anaconda-efbbcdacfcdad30eff2dc13342ef9dae00098dc2.tar.gz anaconda-efbbcdacfcdad30eff2dc13342ef9dae00098dc2.tar.xz anaconda-efbbcdacfcdad30eff2dc13342ef9dae00098dc2.zip |
use the locale names, not the descriptions
-rw-r--r-- | text.py | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -172,10 +172,7 @@ class LanguageSupportWindow: if todo.language.getSupported () == descriptions: todo.language.setSupported (None) else: - langs = [] - for lang in ct.getSelection(): - langs.append (languages[lang]) - todo.language.setSupported (langs) + todo.language.setSupported (ct.getSelection()) return INSTALL_OK |