From: Vinay Sajip Date: Wed, 9 Nov 2005 13:55:13 +0000 (+0000) Subject: Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for reporting... X-Git-Tag: v2.5a0~1184 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b6b53f8ac132603e040145b5bbfd27a18015888;p=python Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for reporting it/supplying a patch) --- diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py index 0ffbc4744a..1ec9afcdc3 100644 --- a/Lib/logging/handlers.py +++ b/Lib/logging/handlers.py @@ -589,7 +589,7 @@ class SysLogHandler(logging.Handler): except socket.error: self.socket.close() self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) - self.socket.connect(address) + self.socket.connect(address) # curious: when talking to the unix-domain '/dev/log' socket, a # zero-terminator seems to be required. this string is placed