[Zope-Checkins] SVN: Zope/branches/2.13/src/Zope2/Startup/__init__.py Merge trunk at 128087. Windows lock file fix.

Ross Patterson cvs-admin at zope.org
Sun Oct 21 04:28:10 UTC 2012


Log message for revision 128088:
  Merge trunk at 128087.  Windows lock file fix.
  

Changed:
  U   Zope/branches/2.13/src/Zope2/Startup/__init__.py

-=-
Modified: Zope/branches/2.13/src/Zope2/Startup/__init__.py
===================================================================
--- Zope/branches/2.13/src/Zope2/Startup/__init__.py	2012-10-21 04:20:50 UTC (rev 128087)
+++ Zope/branches/2.13/src/Zope2/Startup/__init__.py	2012-10-21 04:28:07 UTC (rev 128088)
@@ -280,7 +280,7 @@
                 lock_file(self.lockfile)
                 self.lockfile.write(str(os.getpid()))
                 self.lockfile.flush()
-            except IOError:
+            except (IOError, WindowsError):
                 pass
 
     def makePidFile(self):



More information about the Zope-Checkins mailing list