Browse Source

bugfix: ConnHandler was inheriting from object instead of ConnHandlerBase

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

+ 1 - 1
network/__init__.py

@@ -106,7 +106,7 @@ class ConnHandlerBase(object):
             return False
 
 
-class ConnHandler(object):
+class ConnHandler(ConnHandlerBase):
     """
     More advanced connection handler than ConnectionHandlerBase. For
     instance, sends() takes a string and encodes it, recv() decodes