Skip to content

Commit a2c3c33

Browse files
authored
Use core GitHub URL in all files (home-assistant#41089)
1 parent 005898a commit a2c3c33

21 files changed

+21
-21
lines changed

docs/source/_templates/links.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<ul>
22
<li><a href="https://home-assistant.io/">Homepage</a></li>
33
<li><a href="https://community.home-assistant.io">Community Forums</a></li>
4-
<li><a href="https://github.com/home-assistant/home-assistant">GitHub</a></li>
4+
<li><a href="https://github.com/home-assistant/core">GitHub</a></li>
55
<li><a href="https://discord.gg/c5DvZ4e">Discord</a></li>
66
</ul>

homeassistant/components/ecobee/binary_sensor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def device_info(self):
7070
_LOGGER.error(
7171
"Model number for ecobee thermostat %s not recognized. "
7272
"Please visit this link and provide the following information: "
73-
"https://github.com/home-assistant/home-assistant/issues/27172 "
73+
"https://github.com/home-assistant/core/issues/27172 "
7474
"Unrecognized model number: %s",
7575
thermostat["name"],
7676
thermostat["modelNumber"],

homeassistant/components/ecobee/climate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ def device_info(self):
351351
_LOGGER.error(
352352
"Model number for ecobee thermostat %s not recognized. "
353353
"Please visit this link and provide the following information: "
354-
"https://github.com/home-assistant/home-assistant/issues/27172 "
354+
"https://github.com/home-assistant/core/issues/27172 "
355355
"Unrecognized model number: %s",
356356
self.name,
357357
self.thermostat["modelNumber"],

homeassistant/components/ecobee/sensor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def device_info(self):
8282
_LOGGER.error(
8383
"Model number for ecobee thermostat %s not recognized. "
8484
"Please visit this link and provide the following information: "
85-
"https://github.com/home-assistant/home-assistant/issues/27172 "
85+
"https://github.com/home-assistant/core/issues/27172 "
8686
"Unrecognized model number: %s",
8787
thermostat["name"],
8888
thermostat["modelNumber"],

homeassistant/components/ecobee/weather.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def device_info(self):
7474
_LOGGER.error(
7575
"Model number for ecobee thermostat %s not recognized. "
7676
"Please visit this link and provide the following information: "
77-
"https://github.com/home-assistant/home-assistant/issues/27172 "
77+
"https://github.com/home-assistant/core/issues/27172 "
7878
"Unrecognized model number: %s",
7979
thermostat["name"],
8080
thermostat["modelNumber"],

homeassistant/components/edl21/sensor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def event(self, message_body) -> None:
145145
elif obis not in self._OBIS_BLACKLIST:
146146
_LOGGER.warning(
147147
"Unhandled sensor %s detected. Please report at "
148-
'https://github.com/home-assistant/home-assistant/issues?q=is%%3Aissue+label%%3A"integration%%3A+edl21"+',
148+
'https://github.com/home-assistant/core/issues?q=is%%3Aissue+label%%3A"integration%%3A+edl21"+',
149149
obis,
150150
)
151151
self._OBIS_BLACKLIST.add(obis)

homeassistant/components/sun/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
# The algorithm used here is somewhat complicated. It aims to cut down
4242
# the number of sensor updates over the day. It's documented best in
4343
# the PR for the change, see the Discussion section of:
44-
# https://github.com/home-assistant/home-assistant/pull/23832
44+
# https://github.com/home-assistant/core/pull/23832
4545

4646

4747
# As documented in wikipedia: https://en.wikipedia.org/wiki/Twilight

homeassistant/components/vizio/media_player.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ async def _async_send_update_options_signal(
289289
) -> None:
290290
"""Send update event when Vizio config entry is updated."""
291291
# Move this method to component level if another entity ever gets added for a single config entry.
292-
# See here: https://github.com/home-assistant/home-assistant/pull/30653#discussion_r366426121
292+
# See here: https://github.com/home-assistant/core/pull/30653#discussion_r366426121
293293
async_dispatcher_send(hass, config_entry.entry_id, config_entry)
294294

295295
async def _async_update_options(self, config_entry: ConfigEntry) -> None:

homeassistant/components/xiaomi_aqara/binary_sensor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def parse_data(self, data, raw_data):
254254
_LOGGER.debug(
255255
"Skipping heartbeat of the motion sensor. "
256256
"It can introduce an incorrect state because of a firmware "
257-
"bug (https://github.com/home-assistant/home-assistant/pull/"
257+
"bug (https://github.com/home-assistant/core/pull/"
258258
"11631#issuecomment-357507744)"
259259
)
260260
return

homeassistant/helpers/config_validation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ def deprecated(
702702
else:
703703
# If Python is unable to access the sources files, the call stack frame
704704
# will be missing information, so let's guard.
705-
# https://github.com/home-assistant/home-assistant/issues/24982
705+
# https://github.com/home-assistant/core/issues/24982
706706
module_name = __name__
707707

708708
if replacement_key and invalidation_version:

homeassistant/helpers/deprecation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_deprecated(
6060
else:
6161
# If Python is unable to access the sources files, the call stack frame
6262
# will be missing information, so let's guard.
63-
# https://github.com/home-assistant/home-assistant/issues/24982
63+
# https://github.com/home-assistant/core/issues/24982
6464
module_name = __name__
6565

6666
logger = logging.getLogger(module_name)

homeassistant/helpers/entity.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def _async_write_ha_state(self) -> None:
362362
else:
363363
extra = (
364364
"Please create a bug report at "
365-
"https://github.com/home-assistant/home-assistant/issues?q=is%3Aopen+is%3Aissue"
365+
"https://github.com/home-assistant/core/issues?q=is%3Aopen+is%3Aissue"
366366
)
367367
if self.platform:
368368
extra += (

homeassistant/util/logging.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def log_exception(format_err: Callable[..., Any], *args: Any) -> None:
9898
else:
9999
# If Python is unable to access the sources files, the call stack frame
100100
# will be missing information, so let's guard.
101-
# https://github.com/home-assistant/home-assistant/issues/24982
101+
# https://github.com/home-assistant/core/issues/24982
102102
module_name = __name__
103103

104104
# Do not print the wrapper in the traceback

tests/auth/providers/test_homeassistant.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ async def test_legacy_get_or_create_credentials(hass, legacy_data):
277277
async def test_race_condition_in_data_loading(hass):
278278
"""Test race condition in the hass_auth.Data loading.
279279
280-
Ref issue: https://github.com/home-assistant/home-assistant/issues/21569
280+
Ref issue: https://github.com/home-assistant/core/issues/21569
281281
"""
282282
counter = 0
283283

tests/components/homekit_controller/specific_devices/test_aqara_gateway.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Regression tests for Aqara Gateway V3.
33
4-
https://github.com/home-assistant/home-assistant/issues/20957
4+
https://github.com/home-assistant/core/issues/20957
55
"""
66

77
from homeassistant.components.light import SUPPORT_BRIGHTNESS, SUPPORT_COLOR

tests/components/homekit_controller/specific_devices/test_ecobee3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Regression tests for Ecobee 3.
33
4-
https://github.com/home-assistant/home-assistant/issues/15336
4+
https://github.com/home-assistant/core/issues/15336
55
"""
66

77
from unittest import mock

tests/components/homekit_controller/specific_devices/test_ecobee_occupancy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Regression tests for Ecobee occupancy.
33
4-
https://github.com/home-assistant/home-assistant/issues/31827
4+
https://github.com/home-assistant/core/issues/31827
55
"""
66

77
from tests.components.homekit_controller.common import (

tests/components/homekit_controller/specific_devices/test_koogeek_ls1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async def test_recover_from_failure(hass, utcnow, failure_cls):
5959
"""
6060
Test that entity actually recovers from a network connection drop.
6161
62-
See https://github.com/home-assistant/home-assistant/issues/18949
62+
See https://github.com/home-assistant/core/issues/18949
6363
"""
6464
accessories = await setup_accessories_from_file(hass, "koogeek_ls1.json")
6565
config_entry, pairing = await setup_test_accessories(hass, accessories)

tests/components/homekit_controller/specific_devices/test_lennox_e30.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Regression tests for Aqara Gateway V3.
33
4-
https://github.com/home-assistant/home-assistant/issues/20885
4+
https://github.com/home-assistant/core/issues/20885
55
"""
66

77
from homeassistant.components.climate.const import SUPPORT_TARGET_TEMPERATURE

tests/components/homekit_controller/specific_devices/test_simpleconnect_fan.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Test against characteristics captured from a SIMPLEconnect Fan.
33
4-
https://github.com/home-assistant/home-assistant/issues/26180
4+
https://github.com/home-assistant/core/issues/26180
55
"""
66

77
from homeassistant.components.fan import SUPPORT_DIRECTION, SUPPORT_SET_SPEED

tests/helpers/test_entity.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ async def test_warn_slow_write_state(hass, caplog):
671671
"Updating state for comp_test.test_entity "
672672
"(<class 'homeassistant.helpers.entity.Entity'>) "
673673
"took 10.000 seconds. Please create a bug report at "
674-
"https://github.com/home-assistant/home-assistant/issues?"
674+
"https://github.com/home-assistant/core/issues?"
675675
"q=is%3Aopen+is%3Aissue+label%3A%22integration%3A+hue%22"
676676
) in caplog.text
677677

0 commit comments

Comments
 (0)