Bump aioasuswrt 1.5.3#158882
Conversation
|
Hey there @ollo69, @Vaskivskyi, mind taking a look at this pull request as it has been labeled with an integration ( Code owner commandsCode owners of
|
|
The fix here is kennedyshead/aioasuswrt@c2a108c but it seems to be just covering up the actual issue. I believe the issue was introduced in kennedyshead/aioasuswrt@0a980ee where regex = rf"^{item}=([\w.\-/: <>]+)"was replaced with _NVRAM_REGEX = r"^{<item>}=([\w.\-/: <>]+)"
# ...
regex = _NVRAM_REGEX.format(item)But I think this code should be either _NVRAM_REGEX = r"^{}=([\w.\-/: <>]+)"
regex = _NVRAM_REGEX.format(item)or _NVRAM_REGEX = r"^{item}=([\w.\-/: <>]+)"
regex = _NVRAM_REGEX.format(item=item) |
|
Raising a PR for aioasuswrt in kennedyshead/aioasuswrt#111 |
Yes you are correct, but as this is solved in 2.0.y I wont dig more into this in 1.5.y. At least now it wont fail. |
Proposed change
Bump aioasuswrt to 1.5.3 changelog
Type of change
Additional information
Checklist
ruff format homeassistant tests)If user exposed functionality or configuration variables are added/changed:
If the code communicates with devices, web services, or third-party tools:
Updated and included derived files by running:
python3 -m script.hassfest.requirements_all.txt.Updated by running
python3 -m script.gen_requirements_all.To help with the load of incoming pull requests: