mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 20:27:08 +00:00
Improve language in loader error messages (#122387)
This commit is contained in:
parent
186ca49b16
commit
debebcfd25
@ -945,7 +945,7 @@ class Integration:
|
|||||||
except IntegrationNotFound as err:
|
except IntegrationNotFound as err:
|
||||||
_LOGGER.error(
|
_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"
|
" (sub)dependency %s"
|
||||||
),
|
),
|
||||||
self.domain,
|
self.domain,
|
||||||
@ -954,7 +954,7 @@ class Integration:
|
|||||||
except CircularDependency as err:
|
except CircularDependency as err:
|
||||||
_LOGGER.error(
|
_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"
|
" dependency: %s -> %s"
|
||||||
),
|
),
|
||||||
self.domain,
|
self.domain,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user