Improve language in loader error messages (#122387)

This commit is contained in:
Erik Montnemery 2024-07-22 15:32:36 +02:00 committed by GitHub
parent 186ca49b16
commit debebcfd25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -945,7 +945,7 @@ class Integration:
except IntegrationNotFound as err:
_LOGGER.error(
(
"Unable to resolve dependencies for %s: we are unable to resolve"
"Unable to resolve dependencies for %s: unable to resolve"
" (sub)dependency %s"
),
self.domain,
@ -954,7 +954,7 @@ class Integration:
except CircularDependency as err:
_LOGGER.error(
(
"Unable to resolve dependencies for %s: it contains a circular"
"Unable to resolve dependencies for %s: it contains a circular"
" dependency: %s -> %s"
),
self.domain,