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/cache/
Date: Mon, 03 Aug 2020 23:28:28
Message-Id: 1596497284.04490c92f5713d9634cc1fe3ea7ed4607e9e9ef8.zmedico@gentoo
1 commit: 04490c92f5713d9634cc1fe3ea7ed4607e9e9ef8
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 22:43:24 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 23:28:04 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=04490c92
7
8 lib/portage/cache/mappings.py: fix whitespace
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/cache/mappings.py | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/lib/portage/cache/mappings.py b/lib/portage/cache/mappings.py
17 index 5933981b9..93764e5b8 100644
18 --- a/lib/portage/cache/mappings.py
19 +++ b/lib/portage/cache/mappings.py
20 @@ -1,4 +1,4 @@
21 -# Copyright: 2005-2019 Gentoo Authors
22 +# Copyright: 2005-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24 # Author(s): Brian Harring (ferringb@g.o)
25
26 @@ -212,7 +212,7 @@ class ProtectedDict(MutableMapping):
27 self.blacklist[key] = True
28 return
29 raise KeyError(key)
30 -
31 +
32
33 def __iter__(self):
34 for k in self.new: