first efforts bumping to django-1.8.4

- most things are working
- I had to throw away the db and run `manage.py migrate`
- the top-nav in once logged in is still broken
This commit is contained in:
baccenfutter 2015-09-26 19:22:25 +02:00
parent 5717a10402
commit 43260fb59f
4 changed files with 10 additions and 7 deletions

View file

@ -5,6 +5,9 @@ import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cbmi.settings")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)