Commit d8fd549c authored by Taddeüs Kroes's avatar Taddeüs Kroes

Fixed broken WebSocket constructor

parent 437e9712
...@@ -15,7 +15,7 @@ WS_VERSION = '13' ...@@ -15,7 +15,7 @@ WS_VERSION = '13'
class WebSocket(object): class WebSocket(object):
def __init__(self, sock, address, encoding=None): def __init__(self, sock, address, encoding=None):
super(WebSocket, self).__init__(sock) self.sock = sock
self.address = address self.address = address
self.encoding = encoding self.encoding = encoding
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment