commit: 292f81f17ada179f1edf367cd9faddc299b3bf15
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 24 07:42:11 2018 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Apr 24 07:42:11 2018 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=292f81f1
EbuildMetadataPhase: fix self.self reference
Fixes: 7f1a362fea4c ("EbuildMetadataPhase._output_handler: fix event loop
recursion (bug 591760)")
pym/_emerge/EbuildMetadataPhase.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pym/_emerge/EbuildMetadataPhase.py
b/pym/_emerge/EbuildMetadataPhase.py
index 1ee967532..d146424c3 100644
--- a/pym/_emerge/EbuildMetadataPhase.py
+++ b/pym/_emerge/EbuildMetadataPhase.py
@@ -148,7 +148,7 @@ class EbuildMetadataPhase(SubProcess):
self._unregister()
self._async_wait()
else:
-
self.self._async_waitpid()
+ self._async_waitpid()
break
self._unregister_if_appropriate(event)