Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov-aws committed Nov 1, 2023
1 parent d37ab6a commit 49ba72e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cid/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def load_catalog(self, catalog_url=None):
'''
catalog_url = get_parameters().get('catalog') or self.catalog_url
try:
catalog = yaml.safe_load(self.get_page(catalog_url))
catalog = yaml.safe_load(self.get_page(catalog_url).text)
except requests.exceptions.HTTPError as exc:
logger.warning(f'Failed to load catalog url: {exc}')
logger.debug(exc, exc_info=True)
Expand Down

0 comments on commit 49ba72e

Please sign in to comment.