summaryrefslogtreecommitdiff
blob: fef142ec689836dd642c7d0cc902c68e983f7c2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
From 04a18875d34f677a89bdf1bf57db7f236216e70e Mon Sep 17 00:00:00 2001
From: Justin Bronder <jsbronder@gmail.com>
Date: Mon, 13 Feb 2017 18:21:28 -0500
Subject: [PATCH 2/5] use system feedparser

---
 sabnzbd/rss.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sabnzbd/rss.py b/sabnzbd/rss.py
index 73ec2b4..069aed0 100644
--- a/sabnzbd/rss.py
+++ b/sabnzbd/rss.py
@@ -25,6 +25,8 @@ import time
 import datetime
 import threading
 
+import feedparser
+
 import sabnzbd
 from sabnzbd.constants import RSS_FILE_NAME, DEFAULT_PRIORITY, NORMAL_PRIORITY, DUP_PRIORITY
 from sabnzbd.decorators import synchronized
@@ -35,8 +37,6 @@ from sabnzbd.misc import cat_convert, wildcard_to_re, cat_to_opts, \
 import sabnzbd.emailer as emailer
 from sabnzbd.encoding import unicoder, xml_name
 
-import sabnzbd.utils.feedparser as feedparser
-
 __RSS = None  # Global pointer to RSS-scanner instance
 
 
-- 
2.7.3