summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/AbstractEbuildProcess.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/_emerge/AbstractEbuildProcess.py')
-rw-r--r--pym/_emerge/AbstractEbuildProcess.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pym/_emerge/AbstractEbuildProcess.py b/pym/_emerge/AbstractEbuildProcess.py
index 991e2499d..57f4c8f87 100644
--- a/pym/_emerge/AbstractEbuildProcess.py
+++ b/pym/_emerge/AbstractEbuildProcess.py
@@ -66,12 +66,12 @@ class AbstractEbuildProcess(SpawnProcess):
# being killed by a signal.
self.cancel()
- def _zombie(self):
+ def _orphan_process_warn(self):
phase = self._get_phase()
- msg = _("The ebuild phase '%s' appears "
- "to have left a zombie process with "
- "pid %d.") % (phase, self.pid)
+ msg = _("The ebuild phase '%s' with pid %s appears "
+ "to have left an orphan process running in the "
+ "background.") % (phase, self.pid)
self._eerror(textwrap.wrap(msg, 72))