commit: acd8f3a3841f3be50d4d649bb7180e3e0c77acfc Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Wed Apr 8 05:03:56 2020 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Wed Apr 8 05:29:49 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=acd8f3a3
Revert "AsynchronousTask: Call _start_hook after _start_async" This reverts commit 036c644712c36b2d67e818e6f60aa753ebd6acaf. Bug: https://bugs.gentoo.org/716636 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> lib/_emerge/AsynchronousTask.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/_emerge/AsynchronousTask.py b/lib/_emerge/AsynchronousTask.py index 962c68547..b25a146c7 100644 --- a/lib/_emerge/AsynchronousTask.py +++ b/lib/_emerge/AsynchronousTask.py @@ -25,8 +25,8 @@ class AsynchronousTask(SlotObject): @coroutine def async_start(self): - yield self._async_start() self._start_hook() + yield self._async_start() @coroutine def _async_start(self): @@ -38,8 +38,8 @@ class AsynchronousTask(SlotObject): """ Start an asynchronous task and then return as soon as possible. """ - self._start() self._start_hook() + self._start() def _start(self): self.returncode = os.EX_OK
