Files @ 31375f9e9173
Branch filter:

Location: symposion_app/pinaxcon/wsgi.py

Sachi King
Remove default name from create_review_permssions

This was removed somewhere in 1.8, which means this results in a
failure. If I understand correctly, this "name" is now derived from the
model name's __str__ or something like that.
import os

os.environ.setdefault("DEBUG", "0")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pinaxcon.settings")

from django.core.wsgi import get_wsgi_application  # noqa

from dj_static import Cling, MediaCling  # noqa

application = Cling(MediaCling(get_wsgi_application()))