mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 09:36:52 +03:00
fix issue #436
This commit is contained in:
parent
aa0a8cc9b9
commit
fc37d65661
|
@ -2,6 +2,10 @@
|
|||
All enhancements and patches to cookiecutter-django will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [2015-12-11]
|
||||
### Changed
|
||||
- Fix issue #436 - cookiecutter variable name was renamed from `celery_support` to `use_celery` in `tests/engine.py` (@luzfcb @otakucode)
|
||||
|
||||
## [2015-12-06]
|
||||
### Changed
|
||||
- Reorganization of contributors (@burhan)
|
||||
|
|
|
@ -62,7 +62,7 @@ class ExecutionEngine(hitchtest.ExecutionEngine):
|
|||
redis_package=redis_package,
|
||||
port=16379,
|
||||
)
|
||||
{% if cookiecutter.celery_support == "y" %}
|
||||
{% if cookiecutter.use_celery == "y" %}
|
||||
self.services['Celery'] = hitchpython.CeleryService(
|
||||
python=python_package.python,
|
||||
app="{{cookiecutter.repo_name}}.taskapp", loglevel="INFO",
|
||||
|
|
Loading…
Reference in New Issue
Block a user