Fix the WSGI
[sommitrealweird.git] / sommitrealweird / django.wsgi
1 import os, sys
2 sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
3 sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '.')))
4 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
5
6 from django.core.wsgi import get_wsgi_application
7 application = get_wsgi_application()
8