[Zodb-checkins] CVS: ZODB3/Tools - update.py:1.1.2.3
Guido van Rossum
guido@python.org
Tue, 17 Dec 2002 17:15:21 -0500
Update of /cvs-repository/ZODB3/Tools
In directory cvs.zope.org:/tmp/cvs-serv28991
Modified Files:
Tag: ZODB3-fast-restart-branch
update.py
Log Message:
Be more explicit when printing a 'Disconnected' exception.
=== ZODB3/Tools/update.py 1.1.2.2 => 1.1.2.3 ===
--- ZODB3/Tools/update.py:1.1.2.2 Tue Dec 17 15:42:49 2002
+++ ZODB3/Tools/update.py Tue Dec 17 17:15:21 2002
@@ -39,7 +39,7 @@
time.sleep(1.5)
update(objs)
except Disconnected, err:
- print err
+ print "Disconnected:", `err`
disconnected = 1
else:
disconnected = 0