Bugfix/jinja2 change delimiters of the template folder
Addresses https://github.com/cookiecutter/cookiecutter/issues/1736.
Based on the bugfix by @liortct in https://github.com/cookiecutter/cookiecutter/pull/1767 but using the organization name throughout the project.
This changes the signature of the functions -> breaking change.
As this is a breaking change, we will add it to the 3.0.0 milestone
Would it be sufficient to give the environment parameter a default of None and then conditionally use its settings? For example:
def find(x, environment = None):
left_delimiter = "{{"
right_delimiter = "}}"
if environment is not None:
left_delimiter = environment.x
right_delimiter = environment.y
...
Would that allow this to get merged immediately as a bugfix instead of a breaking change?
Was this addressed with merge of #1997 ?
Yes, I think we can close this pull request.
Sorry for the late response.