[Zope-Checkins] CVS: Zope/lib/python/ZServer - datatypes.py:1.1.2.7
Fred L. Drake, Jr.
fred@zope.com
Thu, 27 Feb 2003 13:31:45 -0500
Update of /cvs-repository/Zope/lib/python/ZServer
In directory cvs.zope.org:/tmp/cvs-serv21499
Modified Files:
Tag: new-install-branch
datatypes.py
Log Message:
Pass the right value to the base-class __init__(); caught while
writing unit tests.
=== Zope/lib/python/ZServer/datatypes.py 1.1.2.6 => 1.1.2.7 ===
--- Zope/lib/python/ZServer/datatypes.py:1.1.2.6 Mon Feb 24 16:56:29 2003
+++ Zope/lib/python/ZServer/datatypes.py Thu Feb 27 13:31:45 2003
@@ -111,7 +111,7 @@
def __init__(self, section):
import socket
if section.address.family == socket.AF_INET:
- address = section.address
+ address = section.address.address
path = None
else:
address = None