From 85ec74fc10ff5b56f3ac674a1b8491f5f068659c Mon Sep 17 00:00:00 2001 From: c-bata Date: Mon, 20 May 2019 22:24:45 +0900 Subject: [PATCH] Fix typo: connnection to connection --- gunicorn/workers/sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/workers/sync.py b/gunicorn/workers/sync.py index 7efa354d..ab9e0856 100644 --- a/gunicorn/workers/sync.py +++ b/gunicorn/workers/sync.py @@ -18,7 +18,7 @@ import gunicorn.util as util import gunicorn.workers.base as base class StopWaiting(Exception): - """ exception raised to stop waiting for a connnection """ + """ exception raised to stop waiting for a connection """ class SyncWorker(base.Worker):