Skip to content

Commit

Permalink
fix for mistake in previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
anwar6953 committed Sep 26, 2014
1 parent 5288f10 commit 66974b6
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 66974b6

Please sign in to comment.