From feb200d807c7b51d9b133d9b9cf480a580c7e208 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Tue, 20 Mar 2012 15:53:32 +1300 Subject: [PATCH] Fix typo in docstring for kill_workers --- gunicorn/arbiter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/arbiter.py b/gunicorn/arbiter.py index 83626923..0278c6a7 100644 --- a/gunicorn/arbiter.py +++ b/gunicorn/arbiter.py @@ -480,7 +480,7 @@ class Arbiter(object): def kill_workers(self, sig): """\ - Lill all workers with the signal `sig` + Kill all workers with the signal `sig` :attr sig: `signal.SIG*` value """ for pid in self.WORKERS.keys():