Browse Source

bugfix, ConnHandler was calling the __init__ method of the superclass of ConnHandlerBase, not of ConnHandler.

digital 7 years ago
parent
commit
b404e32e0d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      network/__init__.py

+ 1 - 1
network/__init__.py

@@ -115,7 +115,7 @@ class ConnHandler(object):
         initialized though!)
         """
     def __init__(self, socket, addr, server):
-        super(ConnHandlerBase, self).__init__(socket,addr,server)
+        super(ConnHandler, self).__init__(socket,addr,server)
         await self.welcome_client()
 
     async def disconnect(self):