[Python-checkins] commit of r41416 - python/trunk/Lib/logging

vinay.sajip@python.org vinay.sajip at python.org
Wed Nov 9 14:55:20 CET 2005


Author: vinay.sajip
Date: Wed Nov  9 14:55:13 2005
New Revision: 41416

Modified:
   python/trunk/Lib/logging/handlers.py
Log:
Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for reporting it/supplying a patch)

Modified: python/trunk/Lib/logging/handlers.py
==============================================================================
--- python/trunk/Lib/logging/handlers.py	(original)
+++ python/trunk/Lib/logging/handlers.py	Wed Nov  9 14:55:13 2005
@@ -589,7 +589,7 @@
         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


More information about the Python-checkins mailing list