aboutsummaryrefslogtreecommitdiff
path: root/iw
diff options
context:
space:
mode:
Diffstat (limited to 'iw')
-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]: