Skip to content

Commit

Permalink
Fixup dad6078: the implementation was broken. Ref. #63.
Browse files Browse the repository at this point in the history
  • Loading branch information
RKrahl committed Feb 25, 2020
1 parent 52363fd commit a297f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icat/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def __init__(self, url, **kwargs):

proxy = kwargs.pop('proxy', {})
kwargs['transport'] = HTTPSTransport(self.sslContext, proxy=proxy)
super(Client, self).__init__(url, **kwargs)
super(Client, self).__init__(self.url, **kwargs)
apiversion = self.getApiVersion()
# Translate a version having a trailing '-SNAPSHOT' into
# something that StrictVersion would accept.
Expand Down

0 comments on commit a297f0b

Please sign in to comment.