Skip to content

Commit

Permalink
Fix help text on '--clean'
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Jul 28, 2016
1 parent 6e7e28b commit c35cd48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gitman/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def main(args=None, function=None):
options.add_argument('-f', '--force', action='store_true',
help="overwrite uncommitted changes in dependencies")
options.add_argument('-c', '--clean', action='store_true',
help="keep ignored files in dependencies")
help="delete ignored files in dependencies")
shared = {'formatter_class': common.WideHelpFormatter}

# Main parser
Expand Down
2 changes: 1 addition & 1 deletion gitman/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def main(args=None):
)
parser.add_argument(
'-c', '--clean', action='store_true',
help="keep ignored files when updating dependencies",
help="delete ignored files when updating dependencies",
)

# Options group
Expand Down

0 comments on commit c35cd48

Please sign in to comment.