diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-10 10:45:32 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-10 10:45:32 (GMT) |
commit | 12d547a80df9096d16b92a422b655fca7e2a1ef9 (patch) | |
tree | 3e9826ea39f4245ddedb9d90c99b0e6820bfe468 /Doc/library/getopt.rst | |
parent | 09f1679a401a94b0626ab1e100aaaea271dbf3c0 (diff) | |
download | cpython-12d547a80df9096d16b92a422b655fca7e2a1ef9.zip cpython-12d547a80df9096d16b92a422b655fca7e2a1ef9.tar.gz cpython-12d547a80df9096d16b92a422b655fca7e2a1ef9.tar.bz2 |
Issue #23921: Standardized documentation whitespace formatting.
Original patch by James Edwards.
Diffstat (limited to 'Doc/library/getopt.rst')
-rw-r--r-- | Doc/library/getopt.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/getopt.rst b/Doc/library/getopt.rst index 2dfb102..2d81e5a 100644 --- a/Doc/library/getopt.rst +++ b/Doc/library/getopt.rst @@ -129,7 +129,7 @@ In a script, typical usage is something like this:: opts, args = getopt.getopt(sys.argv[1:], "ho:v", ["help", "output="]) except getopt.GetoptError as err: # print help information and exit: - print str(err) # will print something like "option -a not recognized" + print str(err) # will print something like "option -a not recognized" usage() sys.exit(2) output = None |