[Zope-Checkins] CVS: Zope/lib/python/ZServer - datatypes.py:1.1.2.4
Fred L. Drake, Jr.
fred@zope.com
Fri, 14 Feb 2003 15:43:40 -0500
Update of /cvs-repository/Zope/lib/python/ZServer
In directory cvs.zope.org:/tmp/cvs-serv528
Modified Files:
Tag: new-install-branch
datatypes.py
Log Message:
Add missing constructor.
=== Zope/lib/python/ZServer/datatypes.py 1.1.2.3 => 1.1.2.4 ===
--- Zope/lib/python/ZServer/datatypes.py:1.1.2.3 Fri Feb 14 00:38:14 2003
+++ Zope/lib/python/ZServer/datatypes.py Fri Feb 14 15:43:39 2003
@@ -80,6 +80,9 @@
class FTPServerFactory(ServerFactory):
+ def __init__(self, section):
+ ServerFactory.__init__(self, section.address)
+
def create(self):
from ZServer.FTPServer import FTPServer
return FTPServer(ip=self.host, port=self.port,