diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-21 16:08:42 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-21 16:08:42 +0000 |
commit | 10395c942817f04a17481cabc9d25d1ba9678b6c (patch) | |
tree | a80d4a318dd48745baa638670c9e04088c4b8a42 /iw | |
parent | c64619596343c12ae71aef5d1c44862f106c72b7 (diff) | |
download | anaconda-10395c942817f04a17481cabc9d25d1ba9678b6c.tar.gz anaconda-10395c942817f04a17481cabc9d25d1ba9678b6c.tar.xz anaconda-10395c942817f04a17481cabc9d25d1ba9678b6c.zip |
fork, exec for syslogd, shoot at rc parsing for language selection
Diffstat (limited to 'iw')
-rw-r--r-- | iw/language.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/iw/language.py b/iw/language.py index ef3a3a67e..6877503f0 100644 --- a/iw/language.py +++ b/iw/language.py @@ -1,6 +1,6 @@ from gtk import * from iw import * -from gui import _, setLanguage +from gui import _ class LanguageWindow (InstallWindow): @@ -11,6 +11,7 @@ class LanguageWindow (InstallWindow): ics.setPrevEnabled (0) ics.setNextEnabled (1) ics.readHTML ("lang") + self.icw = ics.getICW () self.question = (_("What language should be used during the " "installation process?")) self.languages = self.todo.language.available () @@ -20,7 +21,7 @@ class LanguageWindow (InstallWindow): if self.running: lang = clist.get_text (clist.selection[0], 0) self.todo.language.set (lang) - setLanguage (self.languages[lang]) + self.icw.setLanguage (self.languages[lang]) def getScreen (self): mainBox = GtkVBox (FALSE, 10) |