diff options
author | Andre Delfino <adelfino@gmail.com> | 2019-06-29 21:57:39 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2019-06-29 21:57:39 (GMT) |
commit | 18a2fc6f231049a9379823f768287678bb246a88 (patch) | |
tree | 8a575345e80f344a681eed14c31565fd1a9aa2bc | |
parent | ac14632c756fec561e4b868b8793334bd7b22241 (diff) | |
download | cpython-18a2fc6f231049a9379823f768287678bb246a88.zip cpython-18a2fc6f231049a9379823f768287678bb246a88.tar.gz cpython-18a2fc6f231049a9379823f768287678bb246a88.tar.bz2 |
Fix indentation in logging.handlers.setStream (GH-14358)
-rw-r--r-- | Doc/library/logging.handlers.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst index 21c6a04..4c1af7c 100644 --- a/Doc/library/logging.handlers.rst +++ b/Doc/library/logging.handlers.rst @@ -68,7 +68,7 @@ and :meth:`flush` methods). :return: the old stream, if the stream was changed, or *None* if it wasn't. - .. versionadded:: 3.7 + .. versionadded:: 3.7 .. versionchanged:: 3.2 @@ -109,7 +109,6 @@ sends logging output to a disk file. It inherits the output functionality from Closes the file. - .. method:: emit(record) Outputs the record to the file. |