Skip to content
Snippets Groups Projects
Commit fc98097b authored by Greg Wilson's avatar Greg Wilson
Browse files

Printing error messages in sorted order

parent 3c28d16e
Branches
Tags
No related merge requests found
......@@ -51,7 +51,7 @@ class Reporter(object):
if not self.messages:
return
for m in self.messages:
for m in sorted(self.messages):
print(m, file=stream)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment