flash_can: uuid format specifier fix

SIgned-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2023-03-26 06:32:44 -04:00
parent 25482ba0d8
commit 2291f50bf0
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B

View File

@ -472,7 +472,7 @@ class CanSocket:
id_list = await self._query_uuids() id_list = await self._query_uuids()
if uuid not in id_list: if uuid not in id_list:
raise FlashCanError( raise FlashCanError(
f"Unable to find node matching UUID: {uuid:06x}" f"Unable to find node matching UUID: {uuid:012x}"
) )
node = self._set_node_id(uuid) node = self._set_node_id(uuid)
flasher = CanFlasher(node, fw_path) flasher = CanFlasher(node, fw_path)