diff options
-rw-r--r-- | pym/portage/dbapi/vartree.py | 4 |
1 files changed, 2 insertions, 2 deletions
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], |