From d2155697fcec20af006f64afa95e63899df5ed5a Mon Sep 17 00:00:00 2001 From: Ryo Ota Date: Wed, 18 Nov 2020 08:53:09 +0900 Subject: [PATCH] fix a typo --- websockify/websockifyserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websockify/websockifyserver.py b/websockify/websockifyserver.py index 3f78e0e..2d0d6bc 100644 --- a/websockify/websockifyserver.py +++ b/websockify/websockifyserver.py @@ -46,7 +46,7 @@ from websockify.websocketserver import WebSocketRequestHandlerMixIn class CompatibleWebSocket(WebSocket): def select_subprotocol(self, protocols): - # Handle old websockify clients that still specifiy a sub-protocol + # Handle old websockify clients that still specify a sub-protocol if 'binary' in protocols: return 'binary' else: