Skip to content

Commit

Permalink
Adjust code for generic errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dplocki committed Mar 25, 2024
1 parent fa967eb commit 2c2703b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podcast_downloader/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def configuration_to_function_rss_to_name(

feed = load_feed(rss_source_link)
if feed.bozo:
logger.error(f"Error while checking the link: '{rss_source_link}': {feed['bozo_exception'].reason.strerror}")
logger.error(f"Error while checking the link: '{rss_source_link}': {feed['bozo_exception']}")
continue

if not rss_source_name:
Expand Down

0 comments on commit 2c2703b

Please sign in to comment.