From 0180f2f927f6630941fdf7aed18b719c9dce2763 Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Wed, 21 Oct 2015 15:42:15 +0200 Subject: [PATCH] Renaming dev to git folder in wsgi --- pillar/runserver.wsgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pillar/runserver.wsgi b/pillar/runserver.wsgi index af89a77b..a5112d49 100644 --- a/pillar/runserver.wsgi +++ b/pillar/runserver.wsgi @@ -4,7 +4,7 @@ activate_this = '/data/venv/bin/activate_this.py' execfile(activate_this, dict(__file__=activate_this)) from flup.server.fcgi import WSGIServer -sys.path.append('/data/dev/pillar/pillar/') +sys.path.append('/data/git/pillar/pillar/') from application import app as application if __name__ == '__main__':