# HG changeset patch # User Franz Glasner # Date 1742990179 -3600 # Node ID 49ecfff4f319cec54520d597aa76fb2d927eef5b # Parent 6e420f26bcb35f19638c19f62513ed8ab39cb968 treesum: FIX: CRC32Output is not needed any more: do not wrap anything with it diff -r 6e420f26bcb3 -r 49ecfff4f319 cutils/treesum.py --- a/cutils/treesum.py Mon Mar 10 10:36:08 2025 +0100 +++ b/cutils/treesum.py Wed Mar 26 12:56:19 2025 +0100 @@ -512,7 +512,6 @@ out_cm = open(opts.output, "ab") else: out_cm = open(opts.output, "wb") - out_cm = CRC32Output(out_cm) fnmatcher = fnmatch.FnMatcher.build_from_commandline_patterns( opts.fnmatch_filters)