Skip to content

Commit b0d8778

Browse files
committed
fix(init): poetry detection
1 parent 51f9d97 commit b0d8778

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commitizen/commands/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def is_python_poetry(self) -> bool:
3636
if not self.has_pyproject:
3737
return False
3838
with open("pyproject.toml") as f:
39-
return "tool.poetry.version" in f.read()
39+
return "[tool.poetry]" in f.read()
4040

4141
@property
4242
def is_python(self) -> bool:

0 commit comments

Comments
 (0)