aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'iw/mirrorselect-sync_gui.py')
-rw-r--r--iw/mirrorselect-sync_gui.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/iw/mirrorselect-sync_gui.py b/iw/mirrorselect-sync_gui.py
index 9d07d53..c9bbbc4 100644
--- a/iw/mirrorselect-sync_gui.py
+++ b/iw/mirrorselect-sync_gui.py
@@ -39,7 +39,9 @@ class MirrorselectSyncWindow(InstallWindow):
def getNext(self):
for button in self.buttons:
if button.get_property("active"):
- self.anaconda.mirrors_sync.append(button.get_property("label"))
+ # For while the treeview is broken
+ #self.anaconda.mirrors_sync.append(button.get_property("label"))
+ self.anaconda.mirrors_sync.append("rsync://rsync.gentoo.org/gentoo-portage")
return None
def getScreen(self, anaconda):