diff options
Diffstat (limited to 'pym')
| -rw-r--r-- | pym/gentoolkit/eclean/output.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pym/gentoolkit/eclean/output.py b/pym/gentoolkit/eclean/output.py index ab53ab4..d40f3bc 100644 --- a/pym/gentoolkit/eclean/output.py +++ b/pym/gentoolkit/eclean/output.py @@ -178,8 +178,7 @@ class OutputControl(object): @param pkgs: dict. of {cat/pkg-ver: src_uri,} """ indent = ' ' * 12 - keys = list(pkgs.keys()) - keys.sort() + keys = sorted(pkgs) for key in keys: if pkgs[key]: saved = "" |
