From: Zac Medico Date: Sat, 13 Oct 2007 17:44:06 +0000 (-0000) Subject: In the file collision eerror output, don't colorize the X-Git-Tag: v2.2_pre1~630 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5ed7268e170e60ade6122a1bc8e708bfc4e5e6f8;p=portage.git In the file collision eerror output, don't colorize the file paths since the escape codes look ugly in the log. svn path=/main/trunk/; revision=8114 --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 045a33ebb..0cde04611 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -1805,8 +1805,8 @@ class dblink(object): from portage.output import colorize for f in collisions: - cmd += "eerror \" '%s'\" ; " % colorize("INFORM", - os.path.join(destroot, f.lstrip(os.path.sep))) + cmd += "eerror \" '%s'\" ; " % \ + os.path.join(destroot, f.lstrip(os.path.sep)) from portage import process process.spawn(["bash", "-c", cmd],