We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c5667b commit 66a9584Copy full SHA for 66a9584
cookiecutter/local_extensions.py
@@ -37,7 +37,7 @@ def _get_from_json(key: str) -> str:
37
The string from the cookiecutter.json file.
38
"""
39
with open("../cookiecutter.json", encoding="utf8") as cookiecutter_json_file:
40
- return _json.load(cookiecutter_json_file)[key]
+ return str(_json.load(cookiecutter_json_file)[key])
41
42
43
# Ignoring because cookiecutter simple_filter decorator is not typed.
0 commit comments