Skip to content

Commit 0a03ab8

Browse files
committed
Trivial doc change to get readthedocs to rebuild
1 parent 38312de commit 0a03ab8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/argument_processing.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
Argument Processing
33
===================
44

5-
``cmd2`` makes it easy to add sophisticated argument processing to your commands using the ``argparse`` python module. ``cmd2`` handles the following for you:
5+
``cmd2`` makes it easy to add sophisticated argument processing to your commands using the ``argparse`` python module.
6+
``cmd2`` handles the following for you:
67

78
1. Parsing input and quoted strings like the Unix shell
89
2. Parse the resulting argument list using an instance of ``argparse.ArgumentParser`` that you provide
@@ -80,7 +81,7 @@ The ``help tag`` command displays:
8081
optional arguments:
8182
-h, --help show this help message and exit
8283
83-
84+
8485
If you would prefer the short description of your command to come after the usage message, leave the docstring on your method empty, but supply a ``description`` variable to the argument parser::
8586

8687
argparser = argparse.ArgumentParser(description='create an html tag')

0 commit comments

Comments
 (0)