summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-10-11 12:51:26 -0700
committerZac Medico <zmedico@gentoo.org>2010-10-11 18:51:12 -0700
commit4f4e4833f78f1679096c0486c656fd9255336341 (patch)
tree5471f8bda9b81e65e272d97d73c28af09171551d /pym/_emerge
parent1de59d8672bc0f77e5e33b484c5cca4c34f0cede (diff)
downloadportage-4f4e4833f78f1679096c0486c656fd9255336341.tar.gz
portage-4f4e4833f78f1679096c0486c656fd9255336341.tar.bz2
portage-4f4e4833f78f1679096c0486c656fd9255336341.zip
has/best_version: eqawarn if EAPI wrong for atom
Instead of calling die as in bug #340387, just call eqawarn for the time being.
Diffstat (limited to 'pym/_emerge')
-rw-r--r--pym/_emerge/AbstractEbuildProcess.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/AbstractEbuildProcess.py b/pym/_emerge/AbstractEbuildProcess.py
index d711c0585..b99f1df8a 100644
--- a/pym/_emerge/AbstractEbuildProcess.py
+++ b/pym/_emerge/AbstractEbuildProcess.py
@@ -130,7 +130,7 @@ class AbstractEbuildProcess(SpawnProcess):
def _start_ipc_daemon(self):
self._exit_command = ExitCommand()
self._exit_command.reply_hook = self._exit_command_callback
- query_command = QueryCommand(self.settings)
+ query_command = QueryCommand(self.settings, self.phase)
commands = {
'best_version' : query_command,
'exit' : self._exit_command,