aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiktor w brodlo <wiktor@brodlo.net>2011-08-20 15:58:59 +0000
committerwiktor w brodlo <wiktor@brodlo.net>2011-08-20 15:58:59 +0000
commitdaaaf2982841dff0ea21a1292835f1908b3df90e (patch)
tree0978689c2eda16a49f351934ce4de487de6de106
parentDocumentation (diff)
downloadanaconda-daaaf2982841dff0ea21a1292835f1908b3df90e.tar.gz
anaconda-daaaf2982841dff0ea21a1292835f1908b3df90e.tar.bz2
anaconda-daaaf2982841dff0ea21a1292835f1908b3df90e.zip
mirrorselect_gui.py: fix treestore.append when creating the tree
-rw-r--r--iw/mirrorselect_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/mirrorselect_gui.py b/iw/mirrorselect_gui.py
index 1e0291e..0de1d9d 100644
--- a/iw/mirrorselect_gui.py
+++ b/iw/mirrorselect_gui.py
@@ -78,7 +78,7 @@ class MirrorselectWindow(InstallWindow):
(regions, countries, mirrors) = mirror_list
self.treestore = gtk.TreeStore(bool, str, str, str, str)
for region in regions:
- region_ts = self.treestore.append(False, [region, "", "", ""])
+ region_ts = self.treestore.append(None, [region, "", "", ""])
for country in countries[region]:
country_ts = self.treestore.append(region_ts, [country, "", "", ""])
for mirror in mirrors[country]: