Correct the name of request handler class

This commit is contained in:
Marco Pesenti Gritti 2006-05-12 19:07:29 -04:00
parent 8a2cef6a4f
commit bb04e24082

View File

@ -57,7 +57,7 @@ class LocalModel:
while not started and tries > 0:
try:
p2p_server = network.GlibXMLRPCServer(("", port))
p2p_server.register_instance(StreamReaderRequestHandler(self))
p2p_server.register_instance(ModelRequestHandler(self))
started = True
except:
port = port + 1