aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2005-11-09 13:55:13 +0000
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2005-11-09 13:55:13 +0000
commit8b6b53f8ac132603e040145b5bbfd27a18015888 (patch)
tree505cfc3c05a86f023dbbcca632748d89d939f335 /Lib/logging
parentSF Bug #1348477, regextest can't be pydoc'ed. Will backport. (diff)
downloadcpython-8b6b53f8ac132603e040145b5bbfd27a18015888.tar.gz
cpython-8b6b53f8ac132603e040145b5bbfd27a18015888.tar.bz2
cpython-8b6b53f8ac132603e040145b5bbfd27a18015888.zip
Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for reporting it/supplying a patch)
Diffstat (limited to 'Lib/logging')
-rw-r--r--Lib/logging/handlers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py
index 0ffbc4744aa..1ec9afcdc3d 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