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: 1596693457.2eab003dae81672836c40908d26cc7692836c21e.zmedico@gentoo
1 commit: 2eab003dae81672836c40908d26cc7692836c21e
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 5 23:51:55 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 6 05:57:37 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=2eab003d
7
8 lib/portage/elog/mod_custom.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_custom.py | 4 +++-
14 1 file changed, 3 insertions(+), 1 deletion(-)
15
16 diff --git a/lib/portage/elog/mod_custom.py b/lib/portage/elog/mod_custom.py
17 index 836bdad62..7cfafeccc 100644
18 --- a/lib/portage/elog/mod_custom.py
19 +++ b/lib/portage/elog/mod_custom.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.elog.mod_save, portage.process, portage.exception
25 +import portage.elog.mod_save
26 +import portage.exception
27 +import portage.process
28
29 def process(mysettings, key, logentries, fulltext):
30 elogfilename = portage.elog.mod_save.process(mysettings, key, logentries, fulltext)