Skip to content

Commit

Permalink
Printing error messages in sorted order
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Wilson committed Jun 22, 2016
1 parent 3c28d16 commit fc98097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def report(self, stream=sys.stdout):

if not self.messages:
return
for m in self.messages:
for m in sorted(self.messages):
print(m, file=stream)


Expand Down

0 comments on commit fc98097

Please sign in to comment.