Skip to content

Commit

Permalink
Fix error when debug logs activated introduced in 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Aohzan committed Sep 29, 2024
1 parent 7d0fd97 commit 14b78b3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.8.2

- Fix error when debug logs activated introduced in 1.8.1

## 1.8.1

- Fix error when retrying IPX API request
Expand Down
2 changes: 1 addition & 1 deletion custom_components/ipx800v5/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ async def _build_param_schema(

_LOGGER.debug("Build schema according to the extensions found")
for ext_type, extensions in groupby(ipx.extensions_config, lambda x: x["type"]):
_LOGGER.debug("Found %s %s", len(extensions), ext_type)
_LOGGER.debug("Found %s", ext_type)
ext_number = 0
for extension in extensions:
if ext_type == EXT_X8R:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/ipx800v5/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
"requirements": [
"pypx800v5==1.3.2"
],
"version": "1.8.1"
"version": "1.8.2"
}

0 comments on commit 14b78b3

Please sign in to comment.