summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/dbapi/vartree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index d463c3a5e..c90d86b63 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -2762,7 +2762,7 @@ class dblink(object):
func = getattr(portage.elog.messages, funcname)
if self._scheduler is None:
for l in lines:
- func(l, phase=phase, key=self.settings.mycpv)
+ func(l, phase=phase, key=self.mycpv)
else:
background = self.settings.get("PORTAGE_BACKGROUND") == "1"
log_path = None
@@ -2770,7 +2770,7 @@ class dblink(object):
log_path = self.settings.get("PORTAGE_LOG_FILE")
out = portage.StringIO()
for line in lines:
- func(line, phase=phase, key=self.settings.mycpv, out=out)
+ func(line, phase=phase, key=self.mycpv, out=out)
msg = out.getvalue()
self._scheduler.output(msg,
background=background, log_path=log_path)