Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Correct helpstring
Browse files Browse the repository at this point in the history
  • Loading branch information
vbraun committed Jan 30, 2016
1 parent 7332d26 commit 443cf39
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build/sage_bootstrap/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,10 @@ def make_parser():
parser_fix_checksum = subparsers.add_parser(
'fix-checksum', epilog=epilog_fix_checksum,
formatter_class=argparse.RawDescriptionHelpFormatter,
help='Fix the checksum of package. Use "*" for all packages.')
help='Fix the checksum of package.')
parser_fix_checksum.add_argument(
'package_name', nargs='?', default=None, type=str, help='Package name')
'package_name', nargs='?', default=None, type=str,
help='Package name. Default: fix all packages.')

return parser

Expand Down

0 comments on commit 443cf39

Please sign in to comment.