def eerror(lines):
cmd = "source '%s/isolated-functions.sh' ; " % PORTAGE_BIN_PATH
for line in lines:
- cmd += "eerror \"%s\" ; " % line
+ cmd += "eerror '%s' ; " % line
from portage import process
process.spawn(["bash", "-c", cmd],
env=self.settings.environ())
" in cases like this."
if self.settings.get("PORTAGE_QUIET") != "1":
msg += " You can use a command such as" + \
- " \\`portageq owners / <filename>\\` to identify the" + \
+ " `portageq owners / <filename>` to identify the" + \
" installed package that owns a file. If portageq" + \
" reports that only one package owns a file then do NOT" + \
" file a bug report. A bug report is only useful if it" + \
msg.append("")
for f in collisions:
- msg.append(" '%s'" % \
+ msg.append("\t%s" % \
os.path.join(destroot, f.lstrip(os.path.sep)))
eerror(msg)