Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/eshowkw/
Date: Fri, 26 Jan 2018 23:25:44
Message-Id: 1516978250.9dce326531f94f2f34865efce6eb7f0f5060d016.mgorny@gentoo
1 commit: 9dce326531f94f2f34865efce6eb7f0f5060d016
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 23 12:19:52 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 26 14:50:50 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=9dce3265
7
8 eshowkw: Group stable and dev arches together (to match Bugzilla)
9
10 Since dev profile status implies working towards stable status, and we
11 are currently working on improving the status of dev arches
12 (in particular preventing new depgraph breakages from being committed),
13 we have switched Bugzilla to display both statuses alongside. Update
14 eshowkw to use the same output ordering.
15
16 pym/gentoolkit/eshowkw/keywords_header.py | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/pym/gentoolkit/eshowkw/keywords_header.py b/pym/gentoolkit/eshowkw/keywords_header.py
20 index a4934bc..1a1a422 100644
21 --- a/pym/gentoolkit/eshowkw/keywords_header.py
22 +++ b/pym/gentoolkit/eshowkw/keywords_header.py
23 @@ -120,7 +120,7 @@ class keywords_header:
24 longer = [k for k in keywords if self.__isPrefix(k)]
25 normal.extend(longer)
26
27 - lists = self.__IMPARCHS, self.__DEV_ARCHS, self.__EXP_ARCHS
28 + lists = (self.__IMPARCHS + self.__DEV_ARCHS), self.__EXP_ARCHS
29 levels = {}
30 for kw in normal:
31 for level, ls in enumerate(lists):