Skip to content

Commit

Permalink
Merge pull request #28 from caskdata/feature/easier_install
Browse files Browse the repository at this point in the history
fix for mistake in previous commit.
  • Loading branch information
anwar6953 committed Sep 26, 2014
2 parents 276e595 + 66974b6 commit aed8189
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ def fetch_auth_url(self):
raise ValueError(u"Base authentication"
u" client is not configured!")
LOG.debug(u"Try to get the authentication URI from "
u"the gateway server: {}.", self.__base_url + GATEWAY_VERSION + '/ping')
u"the gateway server: {}.", self.__base_url + self.GATEWAY_VERSION + '/ping')

response = requests.get(self.__base_url + GATEWAY_VERSION + '/ping',
response = requests.get(self.__base_url + self.GATEWAY_VERSION + '/ping',
verify=self.ssl_verification_status())
result = None
if response.status_code == hl.UNAUTHORIZED:
Expand Down

0 comments on commit aed8189

Please sign in to comment.