From c27d4f830a8507501b951f47d09f5305a23e6dd6 Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Thu, 8 Oct 2015 10:27:52 +0200 Subject: [PATCH] Tweaks to runserver.wsgi --- pillar/runserver.wsgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pillar/runserver.wsgi b/pillar/runserver.wsgi index 514d2ba0..af89a77b 100644 --- a/pillar/runserver.wsgi +++ b/pillar/runserver.wsgi @@ -5,7 +5,7 @@ execfile(activate_this, dict(__file__=activate_this)) from flup.server.fcgi import WSGIServer sys.path.append('/data/dev/pillar/pillar/') -from application import app +from application import app as application if __name__ == '__main__': - WSGIServer(app).run() + WSGIServer(application).run()