Skip to content

Commit

Permalink
DefaultArgParser: Modify help string
Browse files Browse the repository at this point in the history
The --output option is used to write the results
into the given file, not the logs.

Fixes coala#3475
  • Loading branch information
satwikkansal committed Jan 6, 2017
1 parent 79f996f commit 73c8393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coalib/parsing/DefaultArgParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def default_arg_parser(formatter_class=None):

outputs_group.add_argument(
'-o', '--output', nargs=1, metavar='FILE',
help='write JSON logs to the given file (must be called with --json)')
help='write results to the given file (must be called with --json)')

outputs_group.add_argument(
'-r', '--relpath', nargs='?', const=True,
Expand Down

0 comments on commit 73c8393

Please sign in to comment.