summaryrefslogtreecommitdiffstats
path: root/Doc/library/logging.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-04 08:22:09 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-04 08:22:09 (GMT)
commite418432dfbe63e19b75e7c51208fdc4c8808bf53 (patch)
tree1620f50b05e3d4edea48a0693f643469572231cc /Doc/library/logging.rst
parent21cf577526a6730d7fb38a44398749219ec96e9b (diff)
parent29b0a268220282c49024fb50eedfd325368b1a6a (diff)
downloadcpython-e418432dfbe63e19b75e7c51208fdc4c8808bf53.zip
cpython-e418432dfbe63e19b75e7c51208fdc4c8808bf53.tar.gz
cpython-e418432dfbe63e19b75e7c51208fdc4c8808bf53.tar.bz2
Fixed double hyphens that are rendered to literal en-dashes in the documenation.
Diffstat (limited to 'Doc/library/logging.rst')
-rw-r--r--Doc/library/logging.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst
index 68e4592..6098878 100644
--- a/Doc/library/logging.rst
+++ b/Doc/library/logging.rst
@@ -561,7 +561,7 @@ The useful mapping keys in a :class:`LogRecord` are given in the section on
handled by a strptime format string (``'%Y-%m-%d %H:%M:%S'``), and the
part after the comma is a millisecond value. Because strptime does not
have a format placeholder for milliseconds, the millisecond value is
- appended using another format string, ``'%s,%03d'`` – and both of these
+ appended using another format string, ``'%s,%03d'`` --- and both of these
format strings have been hardcoded into this method. With the change,
these strings are defined as class-level attributes which can be
overridden at the instance level when desired. The names of the