# HG changeset patch # User Franz Glasner # Date 1743029070 -3600 # Node ID e2ae72792f56d053868824319d314068967e2e0b # Parent 97bba2295eb33925fb5f78c08344335ea155f658 treesum: FIX: typo in parameter name: output_tyle -> output_style diff -r 97bba2295eb3 -r e2ae72792f56 cutils/treesum.py --- a/cutils/treesum.py Wed Mar 26 23:44:03 2025 +0100 +++ b/cutils/treesum.py Wed Mar 26 23:44:30 2025 +0100 @@ -456,7 +456,7 @@ ) if generator not in ("normal", "full", "none"): raise ValueError("given generator `%s' not allowed" % (generator, )) - if output_tyle not in ("tagged", "tag"): + if output_style not in ("tagged", "tag"): raise ValueError( "given output_style `%s' not allowed" % (output_style,))