From 41e7aba3a9804928406be417ac79963f8743fbae Mon Sep 17 00:00:00 2001 From: Randall Leeds Date: Sat, 8 Mar 2014 17:53:51 -0800 Subject: [PATCH] bad variable reference in paste startup --- gunicorn/app/wsgiapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/app/wsgiapp.py b/gunicorn/app/wsgiapp.py index 006e0690..e997d17b 100644 --- a/gunicorn/app/wsgiapp.py +++ b/gunicorn/app/wsgiapp.py @@ -18,7 +18,7 @@ class WSGIApplication(Application): os.path.join(util.getcwd(), opts.paste))) if not os.path.exists(path): - raise ConfigError("%r not found" % val) + raise ConfigError("%r not found" % path) # paste application, load the config self.cfgurl = 'config:%s' % path