From: dol-sen Date: Mon, 25 Apr 2011 07:23:55 +0000 (-0700) Subject: pass the nocolor setting on to emerge. X-Git-Tag: gentoolkit-0.3.0.5~39 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2f8da3a3f36faf57ba5d117fe725cbbfbff7ae7f;p=gentoolkit.git pass the nocolor setting on to emerge. --- diff --git a/pym/gentoolkit/revdep_rebuild/rebuild.py b/pym/gentoolkit/revdep_rebuild/rebuild.py index e0ab7d1..ef3a476 100644 --- a/pym/gentoolkit/revdep_rebuild/rebuild.py +++ b/pym/gentoolkit/revdep_rebuild/rebuild.py @@ -148,6 +148,8 @@ def rebuild(logger, assigned, settings): args += ' --verbose' elif settings['VERBOSITY'] < 1: args += ' --quiet' + if settings['nocolor']: + args += ' --color n' if len(emerge_command) == 0: logger.warn(bold('\nThere is nothing to emerge. Exiting.'))