Merge pull request #72 from Mic92/fixes

fixup logger warning call
This commit is contained in:
Jörg Thalheim 2024-01-01 08:12:33 +01:00 committed by GitHub
commit c48efb2b25
Failed to generate hash of commit
2 changed files with 6 additions and 2 deletions

View file

@ -684,7 +684,7 @@ class AnyProjectEndpointMatcher(EndpointMatcherBase):
builder = yield self.master.data.get(("builders", res["builderid"]))
if builder["name"] in self.builders:
log.warning(
log.warn(
"Builder {builder} allowed by {role}: {builders}",
builder=builder["name"],
role=self.role,
@ -692,7 +692,7 @@ class AnyProjectEndpointMatcher(EndpointMatcherBase):
)
return Match(self.master, **{object_type: res})
else:
log.warning(
log.warn(
"Builder {builder} not allowed by {role}: {builders}",
builder=builder["name"],
role=self.role,

View file

@ -79,6 +79,10 @@ ignore = [
"E501", # line too long
"T201", # `print` found
"PLR2004", # Magic value used in comparison
# not compatible with twisted logger: https://docs.twisted.org/en/twisted-18.7.0/core/howto/logger.html
"PGH002", # `warn` is deprecated in favor of `warning`
"G010", # Logging statement uses `warn` instead of `warning`
]
[tool.mypy]