X-Git-Url: https://git.mdrn.pl/django-cas-provider.git/blobdiff_plain/288b97cb037b17ccab0c9c11ec987ad124e350d1..dd16afa78c011b3f6cd0b2c1860fa29a5494481f:/cas_provider_examples/simple/settings.py diff --git a/cas_provider_examples/simple/settings.py b/cas_provider_examples/simple/settings.py index 1896e81..2d4eda3 100644 --- a/cas_provider_examples/simple/settings.py +++ b/cas_provider_examples/simple/settings.py @@ -1,3 +1,7 @@ +from __future__ import unicode_literals + +from django import VERSION + # Django settings for xxx project. DEBUG = True @@ -116,8 +120,12 @@ INSTALLED_APPS = ( 'django.contrib.messages', 'django.contrib.staticfiles', 'cas_provider', + 'simple', ) +if VERSION < (1, 7): + INSTALLED_APPS += ('south',) + # A sample logging configuration. The only tangible logging # performed by this configuration is to send an email to # the site admins on every HTTP 500 error.