Skip to content

Commit

Permalink
Fix typo in logging (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vaskivskyi authored Nov 20, 2023
1 parent 4fc7694 commit 87c2424
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion asusrouter/tools/readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ def read_json_content(content: Optional[str]) -> dict[str, Any]:
return json.loads(content.encode().decode("utf-8-sig"))
except json.JSONDecodeError as ex:
_LOGGER.error(
"Unable to decode json content with exception `%s`. Please, copy this end fill in a bug report: %s",
"Unable to decode json content with exception `%s`.\
Please, copy this and fill in a bug report: %s",
ex,
content,
)
Expand Down

0 comments on commit 87c2424

Please sign in to comment.