diff options
| author | engn33r <engn33r@users.noreply.github.com> | 2021-01-31 12:22:55 -0500 |
|---|---|---|
| committer | engn33r <engn33r@users.noreply.github.com> | 2021-01-31 12:22:55 -0500 |
| commit | b1643d2ca78f14316f92f3fa86e236c5db88eacd (patch) | |
| tree | db57692449a566ec26c32a535799604d215fbdf6 /websocket | |
| parent | aace06b24fef03d6d8f2c6d16c2e23325360c67b (diff) | |
| parent | 7f5eddda77aa03f9b9f458d3d75d28e8dd8697c2 (diff) | |
| download | websocket-client-b1643d2ca78f14316f92f3fa86e236c5db88eacd.tar.gz | |
Merge branch 'master' of github.com:websocket-client/websocket-client
Diffstat (limited to 'websocket')
| -rw-r--r-- | websocket/_app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/websocket/_app.py b/websocket/_app.py index 9b94c77..9fd8cc0 100644 --- a/websocket/_app.py +++ b/websocket/_app.py @@ -270,7 +270,7 @@ class WebSocketApp(object): If close_frame is set, we will invoke the on_close handler with the statusCode and reason from there. """ - if thread and thread.isAlive(): + if thread and thread.is_alive(): event.set() thread.join() self.keep_running = False |
