[Zodb-checkins] CVS: Packages/ZEO - start.py:1.18
klm@serenade.digicool.com
klm@serenade.digicool.com
Wed, 28 Mar 2001 16:55:08 -0500
Update of /cvs-repository/Packages/ZEO
In directory serenade.digicool.com:/usr/local/dc/ZopeSoftwareHome/lib/python/ZEO
Modified Files:
start.py
Log Message:
Retain backwards python1.5.2 compatibility - convert python2 function
call: 'func(*args)' to old, python1.5.2: 'apply(func, args)'.
(When working on pre-zope2.4 code, you should avoid developing in an
environemnt where python2 is the default python...)
--- Updated File start.py in package Packages/ZEO --
--- start.py 2001/03/27 23:37:33 1.17
+++ start.py 2001/03/28 21:55:06 1.18
@@ -322,8 +322,8 @@
except:
info2=sys.exc_info()
import traceback
- traceback.print_exception(*info)
- traceback.print_exception(*info2)
+ apply(traceback.print_exception, info)
+ apply(traceback.print_exception, info2)
sys.exit(0)