~dholbach/ubucon-site/small-fixes

« back to all changes in this revision

Viewing changes to ubucon_site/wsgi.py

  • Committer: David Planella
  • Date: 2015-11-13 11:28:16 UTC
  • Revision ID: david.planella@ubuntu.com-20151113112816-jxnl4mnu11pnj1ao
Fixed whitenoise call, which otherwise won't work

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
from django.core.wsgi import get_wsgi_application
14
14
from whitenoise.django import DjangoWhiteNoise
15
15
 
16
 
application = get_wsgi_application()
17
 
application = DjangoWhiteNoise(application)
 
16
application = DjangoWhiteNoise(get_wsgi_application())