Skip to content

Commit

Permalink
Fix description of argument
Browse files Browse the repository at this point in the history
  • Loading branch information
mgielda authored Jan 19, 2021
1 parent 07cb39c commit 5dbe584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/tuttest
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if __name__ == "__main__":
parser = argparse.ArgumentParser(description='A tutorial tester script. Extract the code blocks from tutorial and see if, when followed, the tutorial actually works.')

parser.add_argument('filename', metavar='filename', type=str, help='filename with tutorial')
parser.add_argument('commands', metavar='commands', nargs='?', type=str, help='optional names to give to the extracted snippets, provided as list')
parser.add_argument('commands', metavar='commands', nargs='?', type=str, help='optional comma-separated list of names of snippets to extract if you want a subset')

parser.add_argument('--prefix-lines-with', metavar='prefix', type=str, help='string to prefix each command with')
parser.add_argument('--single-command', action='store_true', help='executes all snippets in single command')
Expand Down

0 comments on commit 5dbe584

Please sign in to comment.