Mercurial > hgrepos > Python > apps > py-cutils
changeset 329:e2ae72792f56
treesum: FIX: typo in parameter name: output_tyle -> output_style
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Wed, 26 Mar 2025 23:44:30 +0100 |
| parents | 97bba2295eb3 |
| children | 61cbae10103c |
| files | cutils/treesum.py |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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,))
