mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 02:07:54 +00:00
Fix issue creation links in log messages (#71638)
This commit is contained in:
parent
054ea77b45
commit
68c2b63ca1
@ -329,9 +329,9 @@ class EDL21:
|
||||
self._registered_obis.add((electricity_id, obis))
|
||||
elif obis not in self._OBIS_BLACKLIST:
|
||||
_LOGGER.warning(
|
||||
"Unhandled sensor %s detected. Please report at "
|
||||
'https://github.com/home-assistant/core/issues?q=is%%3Aissue+label%%3A"integration%%3A+edl21"+',
|
||||
"Unhandled sensor %s detected. Please report at %s",
|
||||
obis,
|
||||
"https://github.com/home-assistant/core/issues?q=is%3Aopen+is%3Aissue+label%3A%22integration%3A+edl21%22",
|
||||
)
|
||||
self._OBIS_BLACKLIST.add(obis)
|
||||
|
||||
|
@ -415,8 +415,8 @@ def delete_duplicates(hass: HomeAssistant, session: Session) -> None:
|
||||
)
|
||||
if deleted_short_term_statistics_rows:
|
||||
_LOGGER.warning(
|
||||
"Deleted duplicated short term statistic rows, please report at "
|
||||
'https://github.com/home-assistant/core/issues?q=is%%3Aissue+label%%3A"integration%%3A+recorder"+'
|
||||
"Deleted duplicated short term statistic rows, please report at %s",
|
||||
"https://github.com/home-assistant/core/issues?q=is%3Aopen+is%3Aissue+label%3A%22integration%3A+recorder%22",
|
||||
)
|
||||
|
||||
|
||||
@ -1360,8 +1360,8 @@ def _filter_unique_constraint_integrity_error(
|
||||
|
||||
if ignore:
|
||||
_LOGGER.warning(
|
||||
"Blocked attempt to insert duplicated statistic rows, please report at "
|
||||
'https://github.com/home-assistant/core/issues?q=is%%3Aissue+label%%3A"integration%%3A+recorder"+',
|
||||
"Blocked attempt to insert duplicated statistic rows, please report at %s",
|
||||
"https://github.com/home-assistant/core/issues?q=is%3Aopen+is%3Aissue+label%3A%22integration%3A+recorder%22",
|
||||
exc_info=err,
|
||||
)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user