diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-02 22:58:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-02 22:58:20 (GMT) |
commit | 1c84a48032e22f8ce41c6a8f8fe25d3b0e1d6e48 (patch) | |
tree | 8b54297bb50310da3ccdf9f3b2d77b16ebfa7728 | |
parent | fcf91cd35fa10fcaef46fa13be79104add7f5ae7 (diff) | |
download | cpython-1c84a48032e22f8ce41c6a8f8fe25d3b0e1d6e48.zip cpython-1c84a48032e22f8ce41c6a8f8fe25d3b0e1d6e48.tar.gz cpython-1c84a48032e22f8ce41c6a8f8fe25d3b0e1d6e48.tar.bz2 |
[3.12] Fix typo in documentation of `SysLogHandler.createSocket` (GH-111665) (#111669)
(cherry picked from commit 489b80640ff9c4f10b25da6d562b06c62a10a76b)
-rw-r--r-- | Doc/library/logging.handlers.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst index 2a825db..2dd4bd0 100644 --- a/Doc/library/logging.handlers.rst +++ b/Doc/library/logging.handlers.rst @@ -656,9 +656,7 @@ supports sending logging messages to a remote or local Unix syslog. to the other end. This method is called during handler initialization, but it's not regarded as an error if the other end isn't listening at this point - the method will be called again when emitting an event, if - but it's not regarded as an error if the other end isn't listening yet - --- the method will be called again when emitting an event, - if there is no socket at that point. + there is no socket at that point. .. versionadded:: 3.11 |