mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-16 19:41:03 +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.
|
All enhancements and patches to cookiecutter-django will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
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]
|
## [2015-12-06]
|
||||||
### Changed
|
### Changed
|
||||||
- Reorganization of contributors (@burhan)
|
- Reorganization of contributors (@burhan)
|
||||||
|
|
|
@ -62,7 +62,7 @@ class ExecutionEngine(hitchtest.ExecutionEngine):
|
||||||
redis_package=redis_package,
|
redis_package=redis_package,
|
||||||
port=16379,
|
port=16379,
|
||||||
)
|
)
|
||||||
{% if cookiecutter.celery_support == "y" %}
|
{% if cookiecutter.use_celery == "y" %}
|
||||||
self.services['Celery'] = hitchpython.CeleryService(
|
self.services['Celery'] = hitchpython.CeleryService(
|
||||||
python=python_package.python,
|
python=python_package.python,
|
||||||
app="{{cookiecutter.repo_name}}.taskapp", loglevel="INFO",
|
app="{{cookiecutter.repo_name}}.taskapp", loglevel="INFO",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user