Skip to content

Commit

Permalink
analyze/datastub/printer: Sort entries within XML
Browse files Browse the repository at this point in the history
  • Loading branch information
aewag committed Feb 28, 2023
1 parent ecbd407 commit d54e088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analysis/datastub/printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def doprint_generic(self, obj, param1=False):
else:
node = f"{node_plain} origin='fixed' {str(evidence[0].key)}"
self.startNode(node)
for (key, value) in entries.items():
for (key, value) in sorted(entries.items()):
self.doprint_line(f"{format(key, 'x')}: {value}")
self.endNode(node_plain)

Expand Down

0 comments on commit d54e088

Please sign in to comment.