[Zodb-checkins] CVS: StandaloneZODB/ZEO/tests - forker.py:1.5.2.7
Jeremy Hylton
jeremy@zope.com
Mon, 29 Oct 2001 22:08:54 -0500
Update of /cvs-repository/StandaloneZODB/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv23135
Modified Files:
Tag: zeo-1_0-branch
forker.py
Log Message:
Don't get a new port if one is specified as an argument.
=== StandaloneZODB/ZEO/tests/forker.py 1.5.2.6 => 1.5.2.7 ===
"""
import ZEO.tests.winserver
- port = get_port()
+ if port is None:
+ port = get_port()
script = ZEO.tests.winserver.__file__
if script.endswith('.pyc'):
script = script[:-1]