From 89e04c5d17be56a0f9a828fec8bee4dc3d52c699 Mon Sep 17 00:00:00 2001 From: Unbit Date: Sun, 5 Jan 2014 06:06:47 +0100 Subject: [PATCH] fixed UWSGI_PROFILE_OVERRIDE --- uwsgiconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uwsgiconfig.py b/uwsgiconfig.py index f5761264..f76d9f5d 100644 --- a/uwsgiconfig.py +++ b/uwsgiconfig.py @@ -734,7 +734,7 @@ class uConf(object): if 'UWSGI_PROFILE_OVERRIDE' in os.environ: for item in os.environ['UWSGI_PROFILE_OVERRIDE'].split(';'): k,v = item.split('=', 2) - uc.set(k, v) + self.set(k, v) if 'UWSGI_AS_LIB' in os.environ: self.set('as_shared_library', 'true')