[Zodb-checkins] CVS: ZODB3/ZEO - runsvr.py:1.4
Guido van Rossum
guido@python.org
Tue, 19 Nov 2002 14:32:13 -0500
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv26410
Modified Files:
runsvr.py
Log Message:
Rename Server to ZEOServer.
=== ZODB3/ZEO/runsvr.py 1.3 => 1.4 ===
--- ZODB3/ZEO/runsvr.py:1.3 Tue Nov 19 14:11:27 2002
+++ ZODB3/ZEO/runsvr.py Tue Nov 19 14:32:12 2002
@@ -200,7 +200,7 @@
self.usage("no positional arguments supported")
-class Server:
+class ZEOServer:
OptionsClass = ZEOOptions
@@ -397,8 +397,8 @@
# Main program
def main(args=None):
- opts = Server.OptionsClass(args)
- s = Server(opts)
+ opts = ZEOOptions(args)
+ s = ZEOServer(opts)
s.main()
if __name__ == "__main__":