Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/test_transcript.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ def __init__(self, *args, **kwargs):
speak_parser.add_argument('-p', '--piglatin', action="store_true", help="atinLay")
speak_parser.add_argument('-s', '--shout', action="store_true", help="N00B EMULATION MODE")

# Escape open bracket since help text can contain markup
speak_parser.add_argument('-r', '--repeat', type=int, help="output \[n] times")
# Escape open bracket since help text can contain rich markup
speak_parser.add_argument('-r', '--repeat', type=int, help=r"output \[n] times")

@cmd2.with_argparser(speak_parser, with_unknown_args=True)
def do_speak(self, opts, arg):
Expand Down
Loading