From 94b652736fcb2ad40b362d0955541ad1a38143b7 Mon Sep 17 00:00:00 2001 From: lifegpc Date: Sun, 17 Jan 2021 20:50:04 +0800 Subject: [PATCH] fix bug in 80cfc9d --- rssparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rssparser.py b/rssparser.py index 2ab2034..a59f6eb 100644 --- a/rssparser.py +++ b/rssparser.py @@ -256,7 +256,7 @@ class RSSParser: p = HTMLSimpleParser() if 'link' in m and m['link'] is not None: p.baseUrl = m['link'] - p.feed(s) + p.feed(unescape(s)) if p.data == '' and i.firstChild.nodeValue.find('<') == -1: m[i.nodeName] = i.firstChild.nodeValue else: