From b31fa108bf24cfdc0ae4e8b53236756ebc5d7a5c Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Sat, 18 Jan 2025 11:02:48 +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 13e9ddac..7bcaeef8 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -64,7 +64,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():