Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions airos/airos8.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,9 @@ async def stakick(self, mac_address: str = None) -> bool:
) as response:
if response.status == 200:
return True
response_text = await response.text()
log = f"Unable to restart connection response status {response.status} with {response_text}"
logger.error(log)
return False
except (
aiohttp.ClientError,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "airos"
version = "0.0.9"
version = "0.0.10a0"
license = "MIT"
description = "Ubiquity airOS module(s) for Python 3."
readme = "README.md"
Expand Down