summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--portato/gui/queue.py2
-rw-r--r--portato/gui/windows/main.py11
2 files changed, 7 insertions, 6 deletions
diff --git a/portato/gui/queue.py b/portato/gui/queue.py
index 8b5a8dc..b5fb736 100644
--- a/portato/gui/queue.py
+++ b/portato/gui/queue.py
@@ -514,7 +514,7 @@ class EmergeQueue:
else:
it = {}
- self.doEmerge(opts, sets, it, caller = self.update_world)
+ self.doEmerge(opts, list(sets), it, caller = self.update_world)
def sync (self, command = None):
"""Calls "emerge --sync".
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: