From 81c941aba69df79d798265acfc6a3da9387d1b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 21 Aug 2024 15:09:39 +0200 Subject: [PATCH] fix template path for relative clan create template --- pkgs/clan-cli/clan_cli/dirs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/dirs.py b/pkgs/clan-cli/clan_cli/dirs.py index 9249eab21..0c9eadb49 100644 --- a/pkgs/clan-cli/clan_cli/dirs.py +++ b/pkgs/clan-cli/clan_cli/dirs.py @@ -44,7 +44,7 @@ def find_toplevel(top_level_files: list[str]) -> Path | None: def clan_templates() -> Path: - template_path = module_root().parent.parent / "templates" + template_path = module_root().parent.parent.parent / "templates" if template_path.exists(): return template_path else: