Skip to content

Commit 1895b0d

Browse files
committed
Fix bug in cbi-tree --version string
Copy-paste resulted in it identifying itself as cbi-cov. Signed-off-by: John Pennycook <[email protected]>
1 parent 63df3e8 commit 1895b0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codebasin/tree.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _build_parser() -> argparse.ArgumentParser:
3333
parser.add_argument(
3434
"--version",
3535
action="version",
36-
version=f"CBI Coverage Tool {__version__}",
36+
version=f"CBI Tree Tool {__version__}",
3737
help=_help_string("Display version information and exit."),
3838
)
3939
parser.add_argument(

0 commit comments

Comments
 (0)