From e44885897841ba288aff05041c968b48cac39657 Mon Sep 17 00:00:00 2001 From: David D Date: Sun, 12 May 2019 13:54:55 -0400 Subject: [PATCH] erro correction in modification --- daphne/ws_protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daphne/ws_protocol.py b/daphne/ws_protocol.py index 17c2b5e..edf1254 100755 --- a/daphne/ws_protocol.py +++ b/daphne/ws_protocol.py @@ -296,7 +296,7 @@ class WebSocketProtocol(WebSocketServerProtocol): return id(self) == id(other) def __repr__(self): - return "" % (self.client_addr, self.path) + return "" % (self.client_addr, self.path) class WebSocketFactory(WebSocketServerFactory):