now passes flake8

This commit is contained in:
Jay 2014-10-12 10:32:17 +02:00
parent eadd3e77f8
commit 073666e09c
2 changed files with 0 additions and 4 deletions

View File

@ -255,7 +255,6 @@ LOGGING = {
},
}
}
{% if cookiecutter.use_celery == "y" %}
########## CELERY
# if you are not using the django database broker (e.g. rabbitmq, redis, memcached), you can remove the next line.
@ -263,5 +262,4 @@ INSTALLED_APPS += ('kombu.transport.django',)
BROKER_URL = env("CELERY_BROKER_URL", default='django://')
########## END CELERY
{% endif %}
# Your common stuff: Below this line define 3rd party library settings

View File

@ -58,12 +58,10 @@ INSTALLED_APPS += ('django_extensions', )
# TESTING
# ------------------------------------------------------------------------------
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
{% if cookiecutter.celery_support == "y" %}
########## CELERY
# In development, all tasks will be executed locally by blocking until the task returns
CELERY_ALWAYS_EAGER = True
########## END CELERY
{% endif %}
# Your local stuff: Below this line define 3rd party library settings