# HG changeset patch # User Franz Glasner # Date 1736442698 -3600 # Node ID 91b8b2a8aebc0b6e8b4ef96c8c95f90fa72db322 # Parent bcc4441cf2160eab611d5e9e7300017678927c04 Sort flags in the output diff -r bcc4441cf216 -r 91b8b2a8aebc cutils/treesum.py --- a/cutils/treesum.py Thu Jan 09 18:02:46 2025 +0100 +++ b/cutils/treesum.py Thu Jan 09 18:11:38 2025 +0100 @@ -301,6 +301,7 @@ if print_size: flags.append("print-size") if flags: + flags.sort() outfp.write(format_bsd_line("FLAGS", ",".join(flags), None, False)) outfp.flush()