summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pym/gentoolkit/eclean/output.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/gentoolkit/eclean/output.py b/pym/gentoolkit/eclean/output.py
index e7ce59b..ab53ab4 100644
--- a/pym/gentoolkit/eclean/output.py
+++ b/pym/gentoolkit/eclean/output.py
@@ -178,7 +178,7 @@ class OutputControl(object):
@param pkgs: dict. of {cat/pkg-ver: src_uri,}
"""
indent = ' ' * 12
- keys = pkgs.keys()
+ keys = list(pkgs.keys())
keys.sort()
for key in keys:
if pkgs[key]: