aboutsummaryrefslogtreecommitdiff
path: root/iw
diff options
context:
space:
mode:
authorwiktor w brodlo <wiktor@brodlo.net>2011-07-08 16:16:40 +0000
committerwiktor w brodlo <wiktor@brodlo.net>2011-07-08 16:16:40 +0000
commit4c694082c3d382d15e2b3375f36a8e540b4b723e (patch)
tree912ef598fb221eb3b6e16db8a386db669e639fc9 /iw
parentgentoo/utils.py: makeconf_factory: FORMAT not TUPLE! (diff)
downloadanaconda-4c694082c3d382d15e2b3375f36a8e540b4b723e.tar.gz
anaconda-4c694082c3d382d15e2b3375f36a8e540b4b723e.tar.bz2
anaconda-4c694082c3d382d15e2b3375f36a8e540b4b723e.zip
iw/use_gui.py: ignore non-user-settable flags
Diffstat (limited to 'iw')
-rw-r--r--iw/use_gui.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/iw/use_gui.py b/iw/use_gui.py
index a0f3e8c..06361f0 100644
--- a/iw/use_gui.py
+++ b/iw/use_gui.py
@@ -94,6 +94,7 @@ class UseWindow(InstallWindow):
cb = gtk.CheckButton(label=flag)
if flag in use_enabled:
cb.set_active(True)
+ self.use_profile.append(flag) # ignore non-user-settable flags
l = gtk.Label(use[flag])
l.set_alignment(0,0)
@@ -103,7 +104,5 @@ class UseWindow(InstallWindow):
self.buttons.append(cb)
- self.use_profile = use_enabled
-
return self.align