[Python-checkins] commit of r41417 - python/branches/release24-maint/Lib/logging

vinay.sajip@python.org vinay.sajip at python.org
Wed Nov 9 14:56:11 CET 2005


Author: vinay.sajip
Date: Wed Nov  9 14:56:10 2005
New Revision: 41417

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

Modified: python/branches/release24-maint/Lib/logging/handlers.py
==============================================================================
--- python/branches/release24-maint/Lib/logging/handlers.py	(original)
+++ python/branches/release24-maint/Lib/logging/handlers.py	Wed Nov  9 14:56:10 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