Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/_emirrordist/
Date: Sat, 28 Apr 2018 23:08:32
Message-Id: 1524955731.1b0a408fcd556b7d9912856b852a331260d22022.zmedico@gentoo
1 commit: 1b0a408fcd556b7d9912856b852a331260d22022
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 28 22:48:51 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 28 22:48:51 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=1b0a408f
7
8 MirrorDistTask: fix super in _async_wait
9
10 Fixes: 27801746e9aa ("MirrorDistTask: fix deprecated _wait usage (bug 653856)")
11
12 pym/portage/_emirrordist/MirrorDistTask.py | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/pym/portage/_emirrordist/MirrorDistTask.py b/pym/portage/_emirrordist/MirrorDistTask.py
16 index a0912d673..b8cde0af4 100644
17 --- a/pym/portage/_emirrordist/MirrorDistTask.py
18 +++ b/pym/portage/_emirrordist/MirrorDistTask.py
19 @@ -253,4 +253,4 @@ class MirrorDistTask(CompositeTask):
20 Override _async_wait to call self._cleanup().
21 """
22 self._cleanup()
23 - super(CompositeTask, self)._async_wait()
24 + super(MirrorDistTask, self)._async_wait()