[Zodb-checkins] CVS: Zope/lib/python/zdaemon - zdctl.py:1.38

Chris McDonough chrism@zope.com
Sun, 26 Jan 2003 01:09:26 -0500


Update of /cvs-repository/Zope/lib/python/zdaemon
In directory cvs.zope.org:/tmp/cvs-serv5824

Modified Files:
	zdctl.py 
Log Message:
Deal with OSError when file is deleted during logtail.


=== Zope/lib/python/zdaemon/zdctl.py 1.37 => 1.38 ===
--- Zope/lib/python/zdaemon/zdctl.py:1.37	Sun Jan 26 00:44:19 2003
+++ Zope/lib/python/zdaemon/zdctl.py	Sun Jan 26 01:09:22 2003
@@ -406,6 +406,8 @@
             print
         except IOError, msg:
             print msg
+        except OSError, msg:
+            print msg
 
     def help_logtail(self):
         print "logtail [logfile] -- Run tail -f on the given logfile."