From fff7144c933918ba112d51feb99004f258c058ed Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Mon, 20 Jan 2025 13:43:51 +0000 Subject: [PATCH] Fix typo in folder name --- hooks/post_gen_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index 347aa60b..39fc33d5 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -65,7 +65,7 @@ def remove_docker_files(): if "{{ cookiecutter.editor }}" == "PyCharm": file_names = ["docker_compose_up_django.xml", "docker_compose_up_docs.xml"] for file_name in file_names: - Path(".idea", "runConfiguration", file_name).unlink() + Path(".idea", "runConfigurations", file_name).unlink() def remove_nginx_docker_files():