summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rw-r--r--ci/htmlize/htmlize.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/htmlize/htmlize.py b/ci/htmlize/htmlize.py
index c37ebc3..135d401 100644
--- a/ci/htmlize/htmlize.py
+++ b/ci/htmlize/htmlize.py
@@ -15,9 +15,9 @@ def main(args):
# Merging two specs
api_response = requests.get(args.api_declaration_url)
- api_response = json.loads(api_response.content)
+ api_response = api_response.json()
resource_response = requests.get(args.resource_listing_url)
- resource_response = json.loads(resource_response.content)
+ resource_response = resource_response.json()
resource_response['models'] = api_response['models']
resource_response['apis'] = api_response['apis']