Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/elog/
Date: Thu, 06 Aug 2020 07:02:52
Message-Id: 1596693465.01b69027b4fb5407c6eff4e9d05ceedfa23d7938.zmedico@gentoo
1 commit: 01b69027b4fb5407c6eff4e9d05ceedfa23d7938
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 5 23:51:54 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 6 05:57:45 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=01b69027
7
8 lib/portage/elog/mod_mail.py: fix multiple-imports
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 lib/portage/elog/mod_mail.py | 4 +++-
14 1 file changed, 3 insertions(+), 1 deletion(-)
15
16 diff --git a/lib/portage/elog/mod_mail.py b/lib/portage/elog/mod_mail.py
17 index 4edf507eb..38eaa277f 100644
18 --- a/lib/portage/elog/mod_mail.py
19 +++ b/lib/portage/elog/mod_mail.py
20 @@ -2,7 +2,9 @@
21 # Copyright 2006-2020 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -import portage.mail, socket
25 +import portage.mail
26 +import socket
27 +
28 from portage.exception import PortageException
29 from portage.localization import _
30 from portage.util import writemsg