[Zodb-checkins] CVS: ZEO/ZEO - start.py:1.24.2.1

Jeremy Hylton jeremy@zope.com
Wed, 31 Oct 2001 15:03:03 -0500


Update of /cvs-repository/ZEO/ZEO
In directory cvs.zope.org:/tmp/cvs-serv3563

Modified Files:
      Tag: zeo-1_0-branch
	start.py 
Log Message:
Replace another "finally: pass" with "except: pass"

XXX A more thorough solution would be to log an error message when
something goes wrong closing the storage.


=== ZEO/ZEO/start.py 1.24 => 1.24.2.1 ===
     for storage in storages.values():
         try: storage.close()
-        finally: pass
+        except: pass
 
     try:
         from zLOG import LOG, INFO