Skip to content

Commit

Permalink
argparse: update help messages for some options
Browse files Browse the repository at this point in the history
  • Loading branch information
magiraud committed Mar 11, 2014
1 parent 8833d0e commit 23033cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ly2video.py
Expand Up @@ -803,7 +803,7 @@ def parseOptions():

group_inout.add_argument("-b", "--beatmap",
help='name of beatmap file for adjusting MIDI tempo',
metavar="FILE")
metavar="BEATMAP-FILE")

group_inout.add_argument("--slide-show", dest="slideShow",
help="input file prefix to generate a slide show (see doc/slideshow.txt)",
Expand Down Expand Up @@ -852,7 +852,7 @@ def parseOptions():
group_cursors = parser.add_argument_group(title='Cursors')

group_cursors.add_argument("-c", "--color",
help='name of color of middle bar [%(default)s]',
help='name of the cursor color [%(default)s]',
metavar="COLOR", default="red")
group_cursors.add_argument("--no-cursor", dest="noteCursor",
help='do not generate a cursor',
Expand All @@ -864,7 +864,7 @@ def parseOptions():
help='generate a cursor following the score measure by measure',
action="store_true", default=False)
group_cursors.add_argument("--slide-show-cursor", dest="slideShowCursor", type=float,
help="start and end positions on the cursor in the slide show",nargs=2)
help="start and end positions on the cursor in the slide show", nargs=2, metavar=("START", "END"))

group_startend = parser.add_argument_group(title='Start and end of the video')

Expand Down

0 comments on commit 23033cd

Please sign in to comment.