change method signature

This commit is contained in:
Maximilian Hils 2014-01-09 18:04:04 +01:00
parent e0d376381e
commit d31b7daf6c

View File

@ -282,7 +282,7 @@ class Pathod(tcp.TCPServer):
staticdir = self.staticdir
)
def handle_connection(self, request, client_address):
def handle_client_connection(self, request, client_address):
h = PathodHandler(request, client_address, self)
try:
h.handle()