Skip to content

Commit

Permalink
Fix unintentional mistake in config/pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Mar 30, 2022
1 parent 5d4fbb3 commit 85c815d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setuptools/config/pyprojecttoml.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def validate(config: dict, filepath: _Path) -> bool:
from . import _validate_pyproject as validator

try:
return validator._validate(config)
return validator.validate(config)
except validator.ValidationError as ex:
_logger.error(f"configuration error: {ex.summary}") # type: ignore
_logger.debug(ex.details) # type: ignore
Expand Down

0 comments on commit 85c815d

Please sign in to comment.