From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 35E321382C5 for ; Tue, 24 Apr 2018 07:42:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15EF8E08FA; Tue, 24 Apr 2018 07:42:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DEF33E08FA for ; Tue, 24 Apr 2018 07:42:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 45653335C30 for ; Tue, 24 Apr 2018 07:42:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61BB828B for ; Tue, 24 Apr 2018 07:42:45 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1524555731.292f81f17ada179f1edf367cd9faddc299b3bf15.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/EbuildMetadataPhase.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 292f81f17ada179f1edf367cd9faddc299b3bf15 X-VCS-Branch: master Date: Tue, 24 Apr 2018 07:42:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d0a10a99-e000-42c9-951d-fbe7b412e58b X-Archives-Hash: 3e32e0af0c455d1d0a139ca264716556 commit: 292f81f17ada179f1edf367cd9faddc299b3bf15 Author: Zac Medico gentoo org> AuthorDate: Tue Apr 24 07:42:11 2018 +0000 Commit: Zac Medico gentoo 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)