Skip to content

Commit 1232bb9

Browse files
committed
Update project.py
1 parent a389afc commit 1232bb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cppython/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(
3030
pyproject = resolve_model(PyProject, pyproject_data)
3131
except ConfigException as error:
3232
self.logger.error(error, exc_info=True)
33-
return
33+
raise SystemExit(1) from None
3434

3535
if not pyproject.tool or not pyproject.tool.cppython:
3636
self.logger.info("The pyproject.toml file doesn't contain the `tool.cppython` table")

0 commit comments

Comments
 (0)