From 8a0977a12c12c3352f2e0d665b9ec77e0ea37385 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Thu, 7 Feb 2013 16:35:49 +0100 Subject: [PATCH] fix typo --- gunicorn/sock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/sock.py b/gunicorn/sock.py index 20b6dc20..298d7211 100644 --- a/gunicorn/sock.py +++ b/gunicorn/sock.py @@ -135,7 +135,7 @@ def create_sockets(conf, log): raise ValueError('certfile "%s" does not exist' % conf.certfile) if conf.keyfile and not os.path.exists(conf.keyfile): - raise ValueError('certfile "%s" does not exist' % conf.keyfile) + raise ValueError('keyfile "%s" does not exist' % conf.keyfile) # sockets are already bound if 'GUNICORN_FD' in os.environ: