summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew M. Boedicker <matthewm@boedicker.org>2014-05-20 14:43:35 -0700
committerMatthew M. Boedicker <matthewm@boedicker.org>2014-05-20 14:43:35 -0700
commit12191d266bf57f86f4826cde3f2043e7f92d9805 (patch)
tree58003c7405126d4d5e8ce7868e2a081799241ba3
parent6c526fd6458236bbc6fad6ba90b519edf0c1857d (diff)
downloadwebsockify-12191d266bf57f86f4826cde3f2043e7f92d9805.tar.gz
Fix typo in reaping zombies message.
-rw-r--r--websockify/websocket.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/websockify/websocket.py b/websockify/websocket.py
index 67f5aef..d161f64 100644
--- a/websockify/websocket.py
+++ b/websockify/websocket.py
@@ -844,7 +844,7 @@ class WebSocketServer(object):
raise self.Terminate()
def multiprocessing_SIGCHLD(self, sig, stack):
- self.vmsg('Reaing zombies, active child count is %s', len(multiprocessing.active_children()))
+ self.vmsg('Reaping zombies, active child count is %s', len(multiprocessing.active_children()))
def fallback_SIGCHLD(self, sig, stack):
# Reap zombies when using os.fork() (python 2.4)