Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/
Date: Mon, 01 Aug 2011 22:57:30
Message-Id: c72376156311ffa96a5d130bd8b0a207b3fc9ceb.zmedico@gentoo
1 commit: c72376156311ffa96a5d130bd8b0a207b3fc9ceb
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 1 22:57:04 2011 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 1 22:57:04 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=c7237615
7
8 depgraph: fix duplicate zero pkg count display
9
10 ---
11 pym/_emerge/depgraph.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py
15 index 70f9a99..5b48aca 100644
16 --- a/pym/_emerge/depgraph.py
17 +++ b/pym/_emerge/depgraph.py
18 @@ -5555,7 +5555,7 @@ class depgraph(object):
19
20 def _show_merge_list(self):
21 if self._dynamic_config._serialized_tasks_cache is not None and \
22 - not (self._dynamic_config._displayed_list and \
23 + not (self._dynamic_config._displayed_list is not None and \
24 (self._dynamic_config._displayed_list == self._dynamic_config._serialized_tasks_cache or \
25 self._dynamic_config._displayed_list == \
26 list(reversed(self._dynamic_config._serialized_tasks_cache)))):