quodlibet: support feedparser 6

This commit is contained in:
Orivej Desh
2020-12-07 01:31:32 +00:00
parent 5fe86e006e
commit 7dfe92ab94
2 changed files with 14 additions and 0 deletions
@@ -0,0 +1,12 @@
Support feedparser 6, based on https://github.com/quodlibet/quodlibet/pull/3464
--- a/quodlibet/browsers/audiofeeds.py
+++ b/quodlibet/browsers/audiofeeds.py
@@ -137,7 +137,4 @@ class Feed(list):
def parse(self):
try:
- if not self._check_feed():
- return False
-
doc = feedparser.parse(self.uri)
except Exception as e: