Update websocket.py

This commit is contained in:
Abhishek Kekane 2016-02-04 13:00:32 +05:30
parent c8305399cf
commit 4e5967ff09
1 changed files with 1 additions and 1 deletions

View File

@ -1087,7 +1087,7 @@ class WebSocketServer(object):
pid = child.pid
if pid != os.getpid():
self.msg("Terminating child %s" % pid)
os.kill(pid, signal.SIGTERM)
child.terminate()
break
except Exception: