Skip to content

Commit

Permalink
Fix help msg on -o argument (TriBITSPub#610)
Browse files Browse the repository at this point in the history
Noticed this while working on TriBITSPub#610
  • Loading branch information
bartlettroscoe committed Oct 3, 2024
1 parent ded683a commit dab43c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tribits/refactoring/string-replace.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def getCmndLineOptions():

clp.add_argument(
"-o", dest="outputFile", default="",
help="Input file (and also output if -o <file> not specified)" )
help="Output file (optional)" )

options = clp.parse_args(sys.argv[1:])

Expand Down
2 changes: 1 addition & 1 deletion tribits/refactoring/token-replace.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def getCmndLineOptions():

clp.add_argument(
"-o", dest="outputFile", default="",
help="Input file (and also output if -o <file> not specified)" )
help="Output file (optional)" )

options = clp.parse_args(sys.argv[1:])

Expand Down

0 comments on commit dab43c7

Please sign in to comment.