From 12191d266bf57f86f4826cde3f2043e7f92d9805 Mon Sep 17 00:00:00 2001 From: "Matthew M. Boedicker" Date: Tue, 20 May 2014 14:43:35 -0700 Subject: [PATCH] Fix typo in reaping zombies message. --- websockify/websocket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)