Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion airos/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ async def login(self) -> None:
payload = {"username": self.username, "password": self.password}
try:
await self._request_json("POST", self._login_url, json_data=payload)
except (AirOSConnectionAuthenticationError, AirOSConnectionSetupError) as err:
except AirOSConnectionSetupError as err:
raise AirOSConnectionSetupError("Failed to login to AirOS device") from err

async def status(self) -> AirOSDataModel:
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.5.2"
version = "0.5.3"
license = "MIT"
description = "Ubiquiti airOS module(s) for Python 3."
readme = "README.md"
Expand Down