Gentoo Archives: gentoo-commits

From: Paul Varner <fuzzyray@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/eclean/
Date: Wed, 31 Oct 2012 19:16:50
Message-Id: 1351710960.b2a45b246323b7482d679a719b7a3f3222764f9a.fuzzyray@gentoo
1 commit: b2a45b246323b7482d679a719b7a3f3222764f9a
2 Author: Paul Varner <fuzzyray <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 31 19:16:00 2012 +0000
4 Commit: Paul Varner <fuzzyray <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 31 19:16:00 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoolkit.git;a=commit;h=b2a45b24
7
8 eclean: Fix pkg sorting to work with Python3
9
10 ---
11 pym/gentoolkit/eclean/output.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/pym/gentoolkit/eclean/output.py b/pym/gentoolkit/eclean/output.py
15 index e7ce59b..ab53ab4 100644
16 --- a/pym/gentoolkit/eclean/output.py
17 +++ b/pym/gentoolkit/eclean/output.py
18 @@ -178,7 +178,7 @@ class OutputControl(object):
19 @param pkgs: dict. of {cat/pkg-ver: src_uri,}
20 """
21 indent = ' ' * 12
22 - keys = pkgs.keys()
23 + keys = list(pkgs.keys())
24 keys.sort()
25 for key in keys:
26 if pkgs[key]: