summaryrefslogtreecommitdiff
path: root/portato/gui/gui_helper.py
diff options
context:
space:
mode:
authorNecoro <>2008-01-23 23:12:52 +0000
committerNecoro <>2008-01-23 23:12:52 +0000
commitfceb850b55ddf4109905ec939f1e8d06ee651f92 (patch)
tree1772b93bfad9ad3d62448d7ac91ddb725ae5815c /portato/gui/gui_helper.py
parentc2ef204f52a76f529d7ce17d9eb94077a2e15467 (diff)
downloadportato-fceb850b55ddf4109905ec939f1e8d06ee651f92.tar.gz
portato-fceb850b55ddf4109905ec939f1e8d06ee651f92.tar.bz2
portato-fceb850b55ddf4109905ec939f1e8d06ee651f92.zip
r707@Devoty: necoro | 2008-01-24 00:00:22 +0100
small patch for get_actual_use_flag taking into account that a package might not be in system anymore r708@Devoty: necoro | 2008-01-24 00:11:23 +0100 EmergeQueue.is_empty() now honors all queues
Diffstat (limited to '')
-rw-r--r--portato/gui/gui_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py
index 28463a8..c6e6247 100644
--- a/portato/gui/gui_helper.py
+++ b/portato/gui/gui_helper.py
@@ -777,4 +777,4 @@ class EmergeQueue:
@returns: True if everything is empty and the process is not running.
@rtype: bool"""
- return not (self.mergequeue or self.unmergequeue or self.oneshotmerge or self.process)
+ return not (self.process or any(map(len, self.iters.itervalues())))