[viki] Print error message from API request

Closes #651
This commit is contained in:
pukkandan 2021-08-09 00:26:54 +05:30
parent 476febeb3a
commit a38bd1defa
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ def _call_api(
data=json.dumps(data).encode('utf-8') if data else None, data=json.dumps(data).encode('utf-8') if data else None,
headers=({'x-viki-app-ver': self._APP_VERSION} if data headers=({'x-viki-app-ver': self._APP_VERSION} if data
else self._stream_headers(timestamp, sig) if query is None else self._stream_headers(timestamp, sig) if query is None
else None)) or {} else None), expected_status=400) or {}
self._raise_error(resp.get('error'), fatal) self._raise_error(resp.get('error'), fatal)
return resp return resp