Commit Diff
--- ronk.py +++ ronk.py @@ -17,7 +17,7 @@ args = parser.parse_args() with dbm.open(args.db, 'c') as db: with urlopen(args.rss, timeout=15) as response: - rss_content = response.read().decode("utf8") + rss_content = response.read().decode("utf8", errors="ignore") collected = [] for root_child in ET.fromstring(rss_content):