summaryrefslogtreecommitdiffstats
path: root/iw/language_gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-01-03 20:07:02 +0000
committerMatt Wilson <msw@redhat.com>2001-01-03 20:07:02 +0000
commitc4ed83d61e54a55280ec0d45c5bfc844644b1fb7 (patch)
treed1a1eaa2671c2a1e5b866711f551e9bf03318609 /iw/language_gui.py
parenta1cfb6f0f68a0463f838437b074a4afe1eefaa82 (diff)
downloadanaconda-c4ed83d61e54a55280ec0d45c5bfc844644b1fb7.tar.gz
anaconda-c4ed83d61e54a55280ec0d45c5bfc844644b1fb7.tar.xz
anaconda-c4ed83d61e54a55280ec0d45c5bfc844644b1fb7.zip
seperate supported languages from install language
Diffstat (limited to 'iw/language_gui.py')
-rw-r--r--iw/language_gui.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/iw/language_gui.py b/iw/language_gui.py
index b07fd08c7..96271221f 100644
--- a/iw/language_gui.py
+++ b/iw/language_gui.py
@@ -24,7 +24,6 @@ class LanguageWindow (InstallWindow):
def getNext (self):
if self.lang:
- self.todo.language.set (self.lang)
self.icw.setLanguage (self.languages[self.lang])
return None
@@ -53,7 +52,7 @@ class LanguageWindow (InstallWindow):
n = 0
for locale in language_keys:
row = self.language.append ((locale,))
- if self.languages[locale] == self.todo.language.get ():
+ if self.languages[locale] == self.icw.getLanguage ():
default = n
n = n + 1