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