From 1e48a4071a073e87d40cff0599017fe0f2cef683 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Mon, 10 Feb 2014 21:21:03 +0200 Subject: [PATCH] Fix a typo. environement -> environment --- gunicorn/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/config.py b/gunicorn/config.py index 67d9116d..ab74714e 100644 --- a/gunicorn/config.py +++ b/gunicorn/config.py @@ -169,7 +169,7 @@ class Config(object): try: k, v = s.split('=', 1) except ValueError: - raise RuntimeError("environement setting %r invalid" % s) + raise RuntimeError("environment setting %r invalid" % s) env[k] = v