diff options
author | 2011-07-26 11:11:45 +0000 | |
---|---|---|
committer | 2011-07-26 11:11:45 +0000 | |
commit | 23e2f09a59b701e3975b75004dafc95ab59d1f10 (patch) | |
tree | 3a3b56f44f7312553798616f40f62f7823c26360 | |
parent | iw/makeconf_gui.py: populate the -march combobox (diff) | |
download | anaconda-23e2f09a59b701e3975b75004dafc95ab59d1f10.tar.gz anaconda-23e2f09a59b701e3975b75004dafc95ab59d1f10.tar.bz2 anaconda-23e2f09a59b701e3975b75004dafc95ab59d1f10.zip |
iw/makeconf_gui.py: fix syntax error
-rw-r--r-- | iw/makeconf_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/makeconf_gui.py b/iw/makeconf_gui.py index df6dc8e..e9adca0 100644 --- a/iw/makeconf_gui.py +++ b/iw/makeconf_gui.py @@ -77,7 +77,7 @@ class MakeconfWindow(InstallWindow): self.load = self.xml.get_widget("load") self.silent = self.xml.get_widget("silent") - for x in marches + for x in marches: self.march.append_text(x) # TODO: Get a list of arches available for this installation. |