diff options
author | Zac Medico <zmedico@gentoo.org> | 2011-08-01 15:57:04 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2011-08-01 15:57:04 -0700 |
commit | c72376156311ffa96a5d130bd8b0a207b3fc9ceb (patch) | |
tree | 3d86e53b3e2396d380d63f71a37df60462c2c7ec | |
parent | 40f45506b5971073c8a60f172c3171eaf9cad3a6 (diff) | |
download | portage-c72376156311ffa96a5d130bd8b0a207b3fc9ceb.tar.gz portage-c72376156311ffa96a5d130bd8b0a207b3fc9ceb.tar.bz2 portage-c72376156311ffa96a5d130bd8b0a207b3fc9ceb.zip |
depgraph: fix duplicate zero pkg count display
-rw-r--r-- | pym/_emerge/depgraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 70f9a99dd..5b48aca41 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -5555,7 +5555,7 @@ class depgraph(object): def _show_merge_list(self): if self._dynamic_config._serialized_tasks_cache is not None and \ - not (self._dynamic_config._displayed_list and \ + not (self._dynamic_config._displayed_list is not None and \ (self._dynamic_config._displayed_list == self._dynamic_config._serialized_tasks_cache or \ self._dynamic_config._displayed_list == \ list(reversed(self._dynamic_config._serialized_tasks_cache)))): |