In the file collision eerror output, don't colorize the
authorZac Medico <zmedico@gentoo.org>
Sat, 13 Oct 2007 17:44:06 +0000 (17:44 -0000)
committerZac Medico <zmedico@gentoo.org>
Sat, 13 Oct 2007 17:44:06 +0000 (17:44 -0000)
file paths since the escape codes look ugly in the log.

svn path=/main/trunk/; revision=8114

pym/portage/dbapi/vartree.py

index 045a33ebb659ef3ab00f8947fc62f3ad2a2c66e1..0cde046116ebe7db463ff04e87a724b10fa3191c 100644 (file)
@@ -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],