fix typfix typoo

This commit is contained in:
Wolfgang Hottgenroth
2008-03-20 11:32:15 +01:00
parent 0fc9605855
commit 97191133f4

View File

@ -50,7 +50,7 @@ class HttpCmdHandler(BaseHTTPServer.BaseHTTPRequestHandler):
class HttpCmdServer(SocketServer.ThreadingTCPServer):
def __init__(self, serverAddr):
self.allow_reuse_address = True
SocketServer.ThreadTCPServer.__init__(self, serverAddr, HttpCmdHandler)
SocketServer.ThreadingTCPServer.__init__(self, serverAddr, HttpCmdHandler)
class HttpCmdReceiver(threading.Thread):