# HG changeset patch # User Franz Glasner # Date 1737141178 -3600 # Node ID 22f92bf3572cd379a3ef58dcc7854cfbd8e35adc # Parent b2aba84ca426828f25fec60b59b9691ce6fba30c Print the FSENCODING in uppdercase characters always. So the CRC has a better chance to be identical for different Python versions if all the other data is identical too. diff -r b2aba84ca426 -r 22f92bf3572c cutils/treesum.py --- a/cutils/treesum.py Fri Jan 17 15:24:08 2025 +0100 +++ b/cutils/treesum.py Fri Jan 17 20:12:58 2025 +0100 @@ -353,7 +353,7 @@ self._outfp.resetdigest() self._outfp.write(format_bsd_line("VERSION", "1", None, False)) self._outfp.write(format_bsd_line( - "FSENCODING", util.n(walk.getfsencoding()), None, False)) + "FSENCODING", util.n(walk.getfsencoding().upper()), None, False)) self._outfp.flush() #