do not sort BaseExtractor instances by name

This commit is contained in:
Mike Fährmann
2022-02-10 01:44:16 +01:00
parent b4f8e15a1f
commit 4e4cb40663
2 changed files with 47 additions and 45 deletions

View File

@@ -408,8 +408,10 @@ def generate_output(columns, categories, domains):
name = BASE_MAP.get(name) or (name.capitalize() + " Instances")
append('\n<tr>\n <td colspan="4"><strong>' +
name + '</strong></td>\n</tr>')
clist = base.items()
else:
clist = sorted(base.items(), key=category_key)
clist = sorted(base.items(), key=category_key)
for category, subcategories in clist:
append("<tr>")
for column in columns: