From 0bc4778fcac302744266579310840ea984c8d0ae Mon Sep 17 00:00:00 2001 From: bacon Date: Wed, 5 Mar 2025 20:49:45 +0300 Subject: [PATCH] update rss_proxy.py * testing fixes description --- proxy/rss_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/rss_proxy.py b/proxy/rss_proxy.py index bce9f67..b01b15e 100755 --- a/proxy/rss_proxy.py +++ b/proxy/rss_proxy.py @@ -86,7 +86,7 @@ def init_proxy(app): cached_item = rdb.get(cache_key) title = item.find("title") - new_title = re.sub(r'&#\d+;', '', title.text) + new_title = re.sub(r'&#\d+', '', title.text) title.text = new_title print(title.text)