Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"workspace_name": "workspace-folder",
"subproject_name": "my-project"
"subproject_name": "my-project",
"__script_name": "{{ cookiecutter.subproject_name|replace('-','_')|lower }}_code.py"
}
23 changes: 23 additions & 0 deletions news/windows-path.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* <news item>

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* Remove jinja2 templating in the file names to make them compatible in the windows filesystem.

**Security:**

* <news item>
3 changes: 2 additions & 1 deletion {{ cookiecutter.workspace_name }}/cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"workspace_name": "{{ cookiecutter.workspace_name }}",
"subproject_name": "{{ cookiecutter.subproject_name }}"
"subproject_name": "{{ cookiecutter.subproject_name }}",
"__script_name" : "{{ cookiecutter.__script_name }}"
}
Loading