Skip to content

Commit 9860762

Browse files
committed
Fix log-message formatting
1 parent 03eff66 commit 9860762

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise_usb/network/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ async def node_join_available_message(self, response: PlugwiseResponse) -> bool:
256256
)
257257

258258
mac = response.mac_decoded
259-
_LOGGER.debug(f"node_join_available_message | adding available Node {mac}")
259+
_LOGGER.debug("node_join_available_message | adding available Node %s", mac)
260260
try:
261261
await self.register_node(mac)
262262
except NodeError as exc:

0 commit comments

Comments
 (0)