We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eba5cb6 commit a560643Copy full SHA for a560643
plugwise_usb/nodes/circle.py
@@ -864,9 +864,9 @@ async def _clock_synchronize_scheduler(self) -> None:
864
try:
865
await self.clock_synchronize()
866
except Exception:
867
- _LOGGER.exception("Clock synchronisation failed for %s", self.mac_in_str)
+ _LOGGER.exception("Clock synchronisation failed for %s", self._mac_in_str)
868
except CancelledError:
869
- _LOGGER.debug("Clock sync scheduler cancelled for %s", self.mac_in_str)
+ _LOGGER.debug("Clock sync scheduler cancelled for %s", self._mac_in_str)
870
raise
871
872
async def clock_synchronize(self) -> bool:
0 commit comments