aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-01-23 13:19:52 +0100
committerMichał Górny <mgorny@gentoo.org>2018-01-26 15:50:50 +0100
commit9dce326531f94f2f34865efce6eb7f0f5060d016 (patch)
tree92fe715966a3edd240abeeeccc10852a66b84551
parenteshowkw: Remove meaningless duplicate sort of Prefix keywords (diff)
downloadgentoolkit-9dce326531f94f2f34865efce6eb7f0f5060d016.tar.gz
gentoolkit-9dce326531f94f2f34865efce6eb7f0f5060d016.tar.bz2
gentoolkit-9dce326531f94f2f34865efce6eb7f0f5060d016.zip
eshowkw: Group stable and dev arches together (to match Bugzilla)
Since dev profile status implies working towards stable status, and we are currently working on improving the status of dev arches (in particular preventing new depgraph breakages from being committed), we have switched Bugzilla to display both statuses alongside. Update eshowkw to use the same output ordering.
-rw-r--r--pym/gentoolkit/eshowkw/keywords_header.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/gentoolkit/eshowkw/keywords_header.py b/pym/gentoolkit/eshowkw/keywords_header.py
index a4934bc..1a1a422 100644
--- a/pym/gentoolkit/eshowkw/keywords_header.py
+++ b/pym/gentoolkit/eshowkw/keywords_header.py
@@ -120,7 +120,7 @@ class keywords_header:
longer = [k for k in keywords if self.__isPrefix(k)]
normal.extend(longer)
- lists = self.__IMPARCHS, self.__DEV_ARCHS, self.__EXP_ARCHS
+ lists = (self.__IMPARCHS + self.__DEV_ARCHS), self.__EXP_ARCHS
levels = {}
for kw in normal:
for level, ls in enumerate(lists):