From: Zac Medico Date: Mon, 29 Aug 2011 06:49:04 +0000 (-0700) Subject: Send "Recording in world" msg to stdout. X-Git-Tag: v2.2.0_alpha52~38 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7e0ac7d2c92f3556623e4ff34bebffd80fe5f23a;p=portage.git Send "Recording in world" msg to stdout. --- diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 42cc659df..e1c39bc0f 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -6194,7 +6194,8 @@ class depgraph(object): all_added.extend(added_favorites) all_added.sort() for a in all_added: - writemsg(">>> Recording %s in \"world\" favorites file...\n" % \ + writemsg_stdout( + ">>> Recording %s in \"world\" favorites file...\n" % \ colorize("INFORM", str(a)), noiselevel=-1) if all_added: world_set.update(all_added)