From: Zac Medico Date: Fri, 10 Sep 2010 14:51:22 +0000 (-0700) Subject: Bug #336595 - Make dbapi.update_ents() calls quiet when appropriate in X-Git-Tag: v2.2_rc79~7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=465e8facba7deffea50d76e8be03badc14927fb3;p=portage.git Bug #336595 - Make dbapi.update_ents() calls quiet when appropriate in _global_updates(). --- diff --git a/pym/portage/_global_updates.py b/pym/portage/_global_updates.py index 8390d68cf..868d1ee80 100644 --- a/pym/portage/_global_updates.py +++ b/pym/portage/_global_updates.py @@ -222,11 +222,15 @@ def _global_updates(trees, prev_mtimes, quiet=False): def onUpdate(maxval, curval): if curval > 0: writemsg_stdout("#") + if quiet: + onUpdate = None vardb.update_ents(repo_map, onUpdate=onUpdate) if bindb: def onUpdate(maxval, curval): if curval > 0: writemsg_stdout("*") + if quiet: + onUpdate = None bindb.update_ents(repo_map, onUpdate=onUpdate) else: do_upgrade_packagesmessage = 1