summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index e8532e60d..d1dba8def 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -3631,7 +3631,7 @@ class config(object):
yield (k, self[k])
def items(self):
- return list(self.items())
+ return list(self.iteritems())
def __setitem__(self,mykey,myvalue):
"set a value; will be thrown away at reset() time"