aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2018-04-28 15:48:51 -0700
committerZac Medico <zmedico@gentoo.org>2018-04-28 15:48:51 -0700
commit1b0a408fcd556b7d9912856b852a331260d22022 (patch)
tree3953b617f4aaccafd09e6253888495096f04261a
parentAsyncScheduler: fix deprecated _wait usage (bug 653856) (diff)
downloadportage-1b0a408f.tar.gz
portage-1b0a408f.tar.bz2
portage-1b0a408f.zip
MirrorDistTask: fix super in _async_wait
Fixes: 27801746e9aa ("MirrorDistTask: fix deprecated _wait usage (bug 653856)")
-rw-r--r--pym/portage/_emirrordist/MirrorDistTask.py2
1 files changed, 1 insertions, 1 deletions
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()