update rss_proxy.py

* removed print
This commit is contained in:
2025-03-08 20:12:05 +03:00
parent 09528e0c3c
commit d263536a4b

View File

@@ -88,7 +88,7 @@ def init_proxy(app):
title = item.find("title") title = item.find("title")
new_title = re.sub(r'&#\d+', '', title.text) new_title = re.sub(r'&#\d+', '', title.text)
title.text = new_title title.text = new_title
print(title.text) # print(title.text)
if cached_item: if cached_item:
cached_items.append(cached_item.decode()) cached_items.append(cached_item.decode())