projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
104ea03
)
Disable depgraph._show_missed_update() when --quiet is enabled and --debug
author
Zac Medico
<zmedico@gentoo.org>
Sat, 4 Jul 2009 05:59:59 +0000
(
05:59
-0000)
committer
Zac Medico
<zmedico@gentoo.org>
Sat, 4 Jul 2009 05:59:59 +0000
(
05:59
-0000)
is not enabled.
svn path=/main/trunk/; revision=13771
pym/_emerge/depgraph.py
patch
|
blob
|
history
diff --git
a/pym/_emerge/depgraph.py
b/pym/_emerge/depgraph.py
index 509f298e38dba034462fce685fad8c44e118a632..17e9c5f8de431ac1854d62cf242d98ee47f8149e 100644
(file)
--- a/
pym/_emerge/depgraph.py
+++ b/
pym/_emerge/depgraph.py
@@
-267,6
+267,10
@@
class depgraph(object):
def _show_missed_update(self):
+ if '--quiet' in self._frozen_config.myopts and \
+ '--debug' not in self._frozen_config.myopts:
+ return
+
missed_updates = {}
for pkg, mask_reasons in \
self._dynamic_config._runtime_pkg_mask.iteritems():