From fefbe7e5ad16524e15c87206b4be6d2dac554de7 Mon Sep 17 00:00:00 2001 From: Mike DePalatis Date: Fri, 30 Mar 2018 03:36:06 -0400 Subject: [PATCH] Fix socket type in DatagramHandler documentation: TCP -> UDP (GH-6272) (cherry picked from commit 233de021d915364bd3daee921d1d96d50d46d7fe) Co-authored-by: Mike DePalatis --- Doc/library/logging.handlers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst index f13f765c019374c..6bb7b13af8138cb 100644 --- a/Doc/library/logging.handlers.rst +++ b/Doc/library/logging.handlers.rst @@ -511,7 +511,7 @@ over UDP sockets. .. versionchanged:: 3.4 If ``port`` is specified as ``None``, a Unix domain socket is created - using the value in ``host`` - otherwise, a TCP socket is created. + using the value in ``host`` - otherwise, a UDP socket is created. .. method:: emit()