File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ def send_command(self, command: str) -> tuple | None:
6262 _LOGGER .debug ("JSON error: %s" , value .text )
6363 raise ParseJSONError
6464 if value .status_code == 401 :
65- _LOGGER .debug ("Authentication error: %s" , value . text )
65+ _LOGGER .debug ("Authentication error: %s" , value )
6666 raise AuthenticationError
6767
6868 if "ret" not in value .json ():
@@ -82,7 +82,7 @@ def update(self) -> None:
8282 value = requests .get (url )
8383
8484 if value .status_code == 401 :
85- _LOGGER .debug ("Authentication error: %s" , value . text )
85+ _LOGGER .debug ("Authentication error: %s" , value )
8686 raise AuthenticationError
8787
8888 if "/status" in url :
Original file line number Diff line number Diff line change 55
66PROJECT_DIR = Path (__file__ ).parent .resolve ()
77README_FILE = PROJECT_DIR / "README.md"
8- VERSION = "0.1.3 "
8+ VERSION = "0.1.4 "
99
1010
1111setup (
You can’t perform that action at this time.
0 commit comments