fix template path for relative clan create template

This commit is contained in:
Jörg Thalheim
2024-08-21 15:09:39 +02:00
parent d20287f9e3
commit 81c941aba6

View File

@@ -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: