[Zodb-checkins] CVS: StandaloneZODB/ZEO - trigger.py:1.1.8.1
Jeremy Hylton
jeremy@zope.com
Wed, 8 Aug 2001 12:25:49 -0400
Update of /cvs-repository/StandaloneZODB/ZEO
In directory cvs.zope.org:/tmp/cvs-serv24198
Modified Files:
Tag: zeo-1_0-branch
trigger.py
Log Message:
Shorten two long lines, one by wrapping, another by removing an
unnecessary tuple unpacking.
=== StandaloneZODB/ZEO/trigger.py 1.1 => 1.1.8.1 ===
thunk()
except:
- (file, fun, line), t, v, tbinfo = asyncore.compact_traceback()
- print 'exception in trigger thunk: (%s:%s %s)' % (t, v, tbinfo)
+ nil, t, v, tbinfo = asyncore.compact_traceback()
+ print ('exception in trigger thunk:'
+ ' (%s:%s %s)' % (t, v, tbinfo))
self.thunks = []
finally:
self.lock.release()