summaryrefslogtreecommitdiffstats
path: root/pym/portage/sets/libs.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/sets/libs.py')
-rw-r--r--pym/portage/sets/libs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/sets/libs.py b/pym/portage/sets/libs.py
index d7e4c731a..b8aa3c41c 100644
--- a/pym/portage/sets/libs.py
+++ b/pym/portage/sets/libs.py
@@ -64,7 +64,7 @@ class PreservedLibraryConsumerSet(LibraryConsumerSet):
consumers = set()
if reg:
plib_dict = reg.getPreservedLibs()
- for libs in plib_dict.itervalues():
+ for libs in plib_dict.values():
for lib in libs:
if self.debug:
print(lib)
@@ -74,7 +74,7 @@ class PreservedLibraryConsumerSet(LibraryConsumerSet):
consumers.update(self.dbapi.linkmap.findConsumers(lib))
# Don't rebuild packages just because they contain preserved
# libs that happen to be consumers of other preserved libs.
- for libs in plib_dict.itervalues():
+ for libs in plib_dict.values():
consumers.difference_update(libs)
else:
return