Commit ca5e0e07 authored by Guido van Rossum's avatar Guido van Rossum

Rename Server to ZEOServer.

parent 0722a276
......@@ -200,7 +200,7 @@ class ZEOOptions(Options):
self.usage("no positional arguments supported")
class Server:
class ZEOServer:
OptionsClass = ZEOOptions
......@@ -397,8 +397,8 @@ def _log(msg, severity=zLOG.INFO, error=None):
# Main program
def main(args=None):
opts = Server.OptionsClass(args)
s = Server(opts)
opts = ZEOOptions(args)
s = ZEOServer(opts)
s.main()
if __name__ == "__main__":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment