projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da0894d
)
In the file collision eerror output, don't colorize the
author
Zac Medico
<zmedico@gentoo.org>
Sat, 13 Oct 2007 17:44:06 +0000
(17:44 -0000)
committer
Zac 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
patch
|
blob
|
history
diff --git
a/pym/portage/dbapi/vartree.py
b/pym/portage/dbapi/vartree.py
index 045a33ebb659ef3ab00f8947fc62f3ad2a2c66e1..0cde046116ebe7db463ff04e87a724b10fa3191c 100644
(file)
--- 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],