Changeset - 76019742c02e
[Not reviewed]
0 1 0
Brett Smith (brett) - 5 years ago 2018-11-02 13:37:55
brett@sfconservancy.org
wsgicustom: Fix shebang line.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
www/wsgicustom.wsgi
Show inline comments
 
# wsgicustom.py
 
#!/usr/bin/env python
 

	
 
import os
 
import sys
 

	
 
root_dir = os.path.abspath(os.path.dirname(__file__))
 
sys.path.insert(0, root_dir)
 
os.environ['DJANGO_SETTINGS_MODULE'] = 'conservancy.settings'
 

	
 
from django.core.wsgi import get_wsgi_application
 
application = get_wsgi_application()
0 comments (0 inline, 0 general)