Skip to content

Commit

Permalink
Bump to 0.0.15
Browse files Browse the repository at this point in the history
autherror for null cookie
  • Loading branch information
mkmer committed Jul 18, 2023
1 parent 86c94bc commit 7ac3b74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aiosomecomfort/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ async def login(self) -> None:
# if we get null cookies for this, the login has failed.
if AUTH_COOKIE in resp2.cookies and resp2.cookies[AUTH_COOKIE].value == "":
_LOG.error("Login null cookie - site may be down")
raise ConnectionError("Null cookie connection error %s" % resp2.status)
raise AuthError("Null cookie connection error %s" % resp2.status)

if resp2.status == 401:
_LOG.error(
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@

setup(
name="AIOSomecomfort",
version="0.0.14",
version="0.0.15",
description="A client for Honeywell's US-based cloud devices",
license="MIT",
long_description=long_description,
long_description_content_type="text/plain",
author="Mike Kasper",
author_email="m_kasper@sbcglobal.net",
url="https://github.com/mkmer/AIOSomecomfort",
download_url="https://github.com/mkmer/AIOSomecomfort/archive/refs/tags/0.0.14.tar.gz",
download_url="https://github.com/mkmer/AIOSomecomfort/archive/refs/tags/0.0.15.tar.gz",
packages=["aiosomecomfort"],
classifiers=[
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit 7ac3b74

Please sign in to comment.