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/dbapi/
Date: Mon, 03 Aug 2020 21:42:15
Message-Id: 1596489355.2af196d23ef2472432f0d8f29de9e4149978f8ef.zmedico@gentoo
1 commit: 2af196d23ef2472432f0d8f29de9e4149978f8ef
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 20:20:22 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 21:15:55 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=2af196d2
7
8 lib/portage/dbapi/cpv_expand.py: drop unused-import
9
10 * Drop unused import
11 * Update copyright
12
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
15
16 lib/portage/dbapi/cpv_expand.py | 4 +---
17 1 file changed, 1 insertion(+), 3 deletions(-)
18
19 diff --git a/lib/portage/dbapi/cpv_expand.py b/lib/portage/dbapi/cpv_expand.py
20 index a1a91f554..eeec446d4 100644
21 --- a/lib/portage/dbapi/cpv_expand.py
22 +++ b/lib/portage/dbapi/cpv_expand.py
23 @@ -1,12 +1,10 @@
24 -# Copyright 2010-2013 Gentoo Foundation
25 +# Copyright 2010-2020 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 __all__ = ["cpv_expand"]
29
30 import portage
31 from portage.exception import AmbiguousPackageName
32 -from portage.localization import _
33 -from portage.util import writemsg
34 from portage.versions import _pkgsplit
35
36 def cpv_expand(mycpv, mydb=None, use_cache=1, settings=None):