aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/ipm/project/toml_file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipm/project/toml_file.py b/src/ipm/project/toml_file.py
index e28eb1f..4bcfaff 100644
--- a/src/ipm/project/toml_file.py
+++ b/src/ipm/project/toml_file.py
@@ -19,7 +19,7 @@ def init_infini(
entry_file: str,
default_entries: List[str],
) -> None:
- toml_path = target_path.joinpath("pyproject.toml")
+ toml_path = target_path.joinpath("infini.toml")
if toml_path.exists():
toml_data = tomlkit.loads(toml_path.read_text(encoding="utf-8"))
else: