We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a13c8ba commit 5558f37Copy full SHA for 5558f37
1 file changed
src/pkgcheck/reporters.py
@@ -53,7 +53,7 @@ def __call__(self, pipe, sort=False):
53
except KeyError:
54
self.report(result)
55
# output repo and commit results after package-related results
56
- for result in chain.from_iterable(ordered_results.values()):
+ for result in chain.from_iterable(sorted(x) for x in ordered_results.values()):
57
58
59
p.join()
0 commit comments