Commit dfe5e0fc by Tyler Hallada

Address PR comments

parent da163ea0
...@@ -6,12 +6,12 @@ import mock ...@@ -6,12 +6,12 @@ import mock
from django.core.cache import cache from django.core.cache import cache
from django.core.urlresolvers import reverse, reverse_lazy from django.core.urlresolvers import reverse, reverse_lazy
from django.utils.http import urlquote
from django.conf import settings from django.conf import settings
from django.contrib.auth import get_user_model from django.contrib.auth import get_user_model
from django.db import DatabaseError from django.db import DatabaseError
from django.test import TestCase from django.test import TestCase
from django.test.utils import override_settings from django.test.utils import override_settings
from django.utils.http import urlquote
from django_dynamic_fixture import G from django_dynamic_fixture import G
from analyticsclient.exceptions import TimeoutError from analyticsclient.exceptions import TimeoutError
......
...@@ -125,13 +125,6 @@ COMPRESS_CLOSURE_JS_ARGUMENTS = {'compilation_level': 'ADVANCED_OPTIMIZATIONS', ...@@ -125,13 +125,6 @@ COMPRESS_CLOSURE_JS_ARGUMENTS = {'compilation_level': 'ADVANCED_OPTIMIZATIONS',
SECRET_KEY = os.environ.get("ANALYTICS_SECRET_KEY", "insecure-secret-key") SECRET_KEY = os.environ.get("ANALYTICS_SECRET_KEY", "insecure-secret-key")
########## END SECRET CONFIGURATION ########## END SECRET CONFIGURATION
########## DJANGO SETUP
# See: http://stackoverflow.com/a/34115677
# Needed for Django 1.9+
# import django
# django.setup()
########## END DJANGO SETUP
########## SITE CONFIGURATION ########## SITE CONFIGURATION
# Hosts/domain names that are valid for this site # Hosts/domain names that are valid for this site
...@@ -222,7 +215,6 @@ DJANGO_APPS = ( ...@@ -222,7 +215,6 @@ DJANGO_APPS = (
'django_countries', 'django_countries',
'pinax.announcements', 'pinax.announcements',
'compressor', 'compressor',
'crispy_forms',
) )
# Apps specific for this project go here. # Apps specific for this project go here.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment