Skip to content

Commit 8c7227e

Browse files
committed
[BUGFIX] _do_close forgot to close
1 parent 4a36d12 commit 8c7227e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

binary.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from simple_websocket_server import WebSocket
2121
from simple_websocket_server import WebSocketServer
2222

23-
BUILD_VERSION: str = "v0.3.1"
23+
BUILD_VERSION: str = "v0.3.2"
2424

2525
WINDOWS: bool = os.name == "nt"
2626
LOCALHOST: str = "127.0.0.1" if WINDOWS else "localhost"
@@ -424,6 +424,7 @@ def _do_close(self):
424424
":".join([str(_) for _ in self.address]),
425425
"closed by us",
426426
)
427+
self.close()
427428

428429
def __init__(self, *args, **kwargs):
429430
self.nvim_addr_vs_websocket: Dict[str, List[GhostWebSocket]] = {}

binary_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.3.1
1+
v0.3.2

0 commit comments

Comments
 (0)