We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b69bcc commit a74dfb5Copy full SHA for a74dfb5
pyenv_wsio/_wsio.py
@@ -126,7 +126,8 @@ def disconnect(self, abort=False):
126
self.ws.close()
127
128
if not abort:
129
- self.read_loop_task.join()
+ if self.read_loop_task:
130
+ self.read_loop_task.join()
131
132
self.state='disconnected'
133
setup.py
@@ -5,7 +5,7 @@
5
6
setuptools.setup(
7
name="pyenv_wsio",
8
- version="0.0.2",
+ version="0.0.3",
9
author="beanjs",
10
author_email="502554248@qq.com",
11
description="VirtualPyEnv websocket library",
0 commit comments