From c353eaaceebea1ef03c2e2329d88e994740093c3 Mon Sep 17 00:00:00 2001 From: benoitc Date: Tue, 13 May 2014 10:29:26 +0200 Subject: [PATCH] fix ThreadWorker --- gunicorn/workers/gthread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/workers/gthread.py b/gunicorn/workers/gthread.py index b6d6247b..a0aebf2f 100644 --- a/gunicorn/workers/gthread.py +++ b/gunicorn/workers/gthread.py @@ -46,7 +46,7 @@ class TConn(): __cmp__ = __lt__ -class ThreadWorker(base.worker): +class ThreadWorker(base.Worker): def __init__(self, *args, **kwargs): super(ThreadWorker, self).__init__(*args, **kwargs)