summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/BlockerCache.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/_emerge/BlockerCache.py')
-rw-r--r--pym/_emerge/BlockerCache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/BlockerCache.py b/pym/_emerge/BlockerCache.py
index c4270242f..7c6be8ada 100644
--- a/pym/_emerge/BlockerCache.py
+++ b/pym/_emerge/BlockerCache.py
@@ -71,7 +71,7 @@ class BlockerCache(portage.cache.mappings.MutableMapping):
# Validate all the atoms and counters so that
# corruption is detected as soon as possible.
invalid_items = set()
- for k, v in self._cache_data["blockers"].iteritems():
+ for k, v in self._cache_data["blockers"].items():
if not isinstance(k, basestring):
invalid_items.add(k)
continue