diff options
author | Georg Brandl <georg@python.org> | 2011-04-16 15:05:30 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-04-16 15:05:30 (GMT) |
commit | ab8d93c03a4d802c2244ac3323191cb603dfcffd (patch) | |
tree | 988d2988aa784a60ebe6e3d9fc8f0aecfa2ed7c3 /Doc/library | |
parent | 10fe23b4954890c0e414438e026d1b36610ee668 (diff) | |
download | cpython-ab8d93c03a4d802c2244ac3323191cb603dfcffd.zip cpython-ab8d93c03a4d802c2244ac3323191cb603dfcffd.tar.gz cpython-ab8d93c03a4d802c2244ac3323191cb603dfcffd.tar.bz2 |
Backport 8a9f8f34d9d5.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 2164ec0..9c260ac 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -221,7 +221,7 @@ the parser's help message. For example, consider a file named parser.add_argument('--foo', help='foo help') args = parser.parse_args() -If ``-h`` or ``--help`` is supplied is at the command-line, the ArgumentParser +If ``-h`` or ``--help`` is supplied at the command-line, the ArgumentParser help will be printed:: $ python myprogram.py --help |