summaryrefslogtreecommitdiff
path: root/portato/gui/windows/main.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-07-16 14:39:10 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-07-16 14:39:10 +0200
commit0538f7193a16e86751e2e0ae865c4361fd1d4f94 (patch)
tree52dd9740774f80d7f11052eafb7fe0de79b8a849 /portato/gui/windows/main.py
parent1a6bf40d199a59a03f3f008402e0865fb1b9fc85 (diff)
downloadportato-0538f7193a16e86751e2e0ae865c4361fd1d4f94.tar.gz
portato-0538f7193a16e86751e2e0ae865c4361fd1d4f94.tar.bz2
portato-0538f7193a16e86751e2e0ae865c4361fd1d4f94.zip
Fixed the update_world with sets for <portage-2.2
Diffstat (limited to '')
-rw-r--r--portato/gui/windows/main.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py
index a68fe17..f5b5d17 100644
--- a/portato/gui/windows/main.py
+++ b/portato/gui/windows/main.py
@@ -1420,13 +1420,14 @@ class MainWindow (Window):
watch = gtk.gdk.Cursor(gtk.gdk.WATCH)
self.window.window.set_cursor(watch)
try:
- self.updateSets = ("world", "system") # default
if system.has_set_support():
confsets = [x.strip() for x in self.cfg.get("updatesets").split(",")]
- syssets = system.get_sets()
- self.updateSets = [s for s in confsets if s in syssets]
-
- updating = system.update_world(sets = self.updateSets, newuse = self.cfg.get_boolean("newuse"), deep = self.cfg.get_boolean("deep"))
+ self.updateSets = [s for s in confsets if s in system.get_sets()]
+ updating = system.update_world(sets = self.updateSets, newuse = self.cfg.get_boolean("newuse"), deep = self.cfg.get_boolean("deep"))
+ else:
+ updating = system.update_world(newuse = self.cfg.get_boolean("newuse"), deep = self.cfg.get_boolean("deep"))
+ self.updateSets = ("world",)
+
debug("updating list: %s --> length: %s", [(x.get_cpv(), y.get_cpv()) for x,y in updating], len(updating))
gobject.idle_add(cb_idle_append, updating)
finally: