Skip to content
Open
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: 2 additions & 0 deletions blih/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ def blih(method, resource, auth, data=None):
except requests.exceptions.HTTPError:
raise BlihError('An HTTP Error occured')
except ValueError:
print("HTTP Code: %d" % req.status_code)
print("HTTP Response: %s" % req.content)
raise BlihError('Unknown Error')

if req.status_code in [400, 401, 403, 404, 405, 409]:
Expand Down