Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
Fix #266 dcm-list-api-versions bug
Browse files Browse the repository at this point in the history
  • Loading branch information
igable committed Sep 3, 2015
1 parent cce8ec0 commit 4843460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mixcoatl/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def _load_api_versions(self):
headers = {'content-type': 'application/json', 'Accept': 'application/json'}
url_parts = self.url.split("/")
url = url_parts[0]+"//"+url_parts[2]+"/api/enstratus"
result = r.get(url,headers=headers)
result = r.get(url,headers=headers, verify=self.ssl_verify)
result.raise_for_status()
self.loaded = True
self.available_api_versions = uncamel_keys(result.json())
Expand Down

0 comments on commit 4843460

Please sign in to comment.