erro correction in modification

This commit is contained in:
David D 2019-05-12 13:54:55 -04:00
parent 3a58755140
commit e448858978

View File

@ -296,7 +296,7 @@ class WebSocketProtocol(WebSocketServerProtocol):
return id(self) == id(other) return id(self) == id(other)
def __repr__(self): def __repr__(self):
return "" % (self.client_addr, self.path) return "<WebSocketProtocol client=%r path=%r>" % (self.client_addr, self.path)
class WebSocketFactory(WebSocketServerFactory): class WebSocketFactory(WebSocketServerFactory):