summaryrefslogtreecommitdiffstats
path: root/Doc/library/getopt.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-10 10:45:32 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-10 10:45:32 (GMT)
commit12d547a80df9096d16b92a422b655fca7e2a1ef9 (patch)
tree3e9826ea39f4245ddedb9d90c99b0e6820bfe468 /Doc/library/getopt.rst
parent09f1679a401a94b0626ab1e100aaaea271dbf3c0 (diff)
downloadcpython-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.rst2
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