commit: 1b0a408fcd556b7d9912856b852a331260d22022
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 28 22:48:51 2018 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sat Apr 28 22:48:51 2018 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=1b0a408f
MirrorDistTask: fix super in _async_wait
Fixes: 27801746e9aa ("MirrorDistTask: fix deprecated _wait usage (bug 653856)")
pym/portage/_emirrordist/MirrorDistTask.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pym/portage/_emirrordist/MirrorDistTask.py
b/pym/portage/_emirrordist/MirrorDistTask.py
index a0912d673..b8cde0af4 100644
--- a/pym/portage/_emirrordist/MirrorDistTask.py
+++ b/pym/portage/_emirrordist/MirrorDistTask.py
@@ -253,4 +253,4 @@ class MirrorDistTask(CompositeTask):
Override _async_wait to call self._cleanup().
"""
self._cleanup()
- super(CompositeTask, self)._async_wait()
+ super(MirrorDistTask, self)._async_wait()