aioamazondevices 11.0.1__tar.gz → 11.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/PKG-INFO +1 -1
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/pyproject.toml +1 -1
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/__init__.py +1 -1
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/http_wrapper.py +1 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/LICENSE +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/README.md +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/api.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/__init__.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/devices.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/http.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/metadata.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/queries.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/schedules.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/const/sounds.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/exceptions.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/implementation/__init__.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/implementation/dnd.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/implementation/notification.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/implementation/sequence.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/login.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/py.typed +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/structures.py +0 -0
- {aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/utils.py +0 -0
|
@@ -371,6 +371,7 @@ class AmazonHttpWrapper:
|
|
|
371
371
|
]:
|
|
372
372
|
raise CannotAuthenticate(await self.http_phrase_error(resp.status))
|
|
373
373
|
if not await self._ignore_ap_signin_error(resp):
|
|
374
|
+
_LOGGER.debug("Error response content: %s", await resp.text())
|
|
374
375
|
raise CannotRetrieveData(
|
|
375
376
|
f"Request failed: {await self.http_phrase_error(resp.status)}"
|
|
376
377
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/implementation/__init__.py
RENAMED
|
File without changes
|
{aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/implementation/dnd.py
RENAMED
|
File without changes
|
|
File without changes
|
{aioamazondevices-11.0.1 → aioamazondevices-11.0.2}/src/aioamazondevices/implementation/sequence.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|