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 indexclient/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,8 @@ def list_versions(self, did):

@retry_and_timeout_wrapper
def _get(self, *path, **kwargs):
if self.auth and 'auth' not in kwargs:
kwargs['auth'] = self.auth
resp = requests.get(self.url_for(*path), **kwargs)
handle_error(resp)
return resp
Expand Down