summaryrefslogtreecommitdiff
path: root/portato/gui/gui_helper.py
diff options
context:
space:
mode:
authorNecoro <>2008-01-20 01:55:36 +0000
committerNecoro <>2008-01-20 01:55:36 +0000
commit6647e99ec83e2a934346bb4ca58e93a2e216a831 (patch)
treea40ca9933e589db43595846adad58e0cefe86724 /portato/gui/gui_helper.py
parent7281cbcb12c40aa8335c2dbf0a4781ff799761a4 (diff)
downloadportato-6647e99ec83e2a934346bb4ca58e93a2e216a831.tar.gz
portato-6647e99ec83e2a934346bb4ca58e93a2e216a831.tar.bz2
portato-6647e99ec83e2a934346bb4ca58e93a2e216a831.zip
r680@Devoty: necoro | 2008-01-20 02:53:30 +0100
Fixed flag handling
Diffstat (limited to '')
-rw-r--r--portato/gui/gui_helper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py
index 5d171d6..9c16892 100644
--- a/portato/gui/gui_helper.py
+++ b/portato/gui/gui_helper.py
@@ -388,7 +388,7 @@ class EmergeQueue:
# recursive call
for d in deps:
try:
- self.update_tree(subIt, d, unmask)
+ self.update_tree(subIt, d, unmask, type = type)
except backend.BlockedException, e: # BlockedException occured -> delete current tree and re-raise exception
debug("Something blocked: %s", e[0])
self.remove_with_children(subIt)
@@ -431,7 +431,7 @@ class EmergeQueue:
if hasBeenInQueue: # package has been in queue before
self._queue_append(cpv, oneshot)
- self.update_tree(parentIt, cpv, unmask, oneshot = oneshot)
+ self.update_tree(parentIt, cpv, unmask, oneshot = oneshot, type = type)
else: # not update
if type == "install":
self._queue_append(cpv, oneshot)