aboutsummaryrefslogtreecommitdiff
path: root/source/feedgetter.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/feedgetter.py')
-rwxr-xr-xsource/feedgetter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/feedgetter.py b/source/feedgetter.py
index a2cdb752..a27a068c 100755
--- a/source/feedgetter.py
+++ b/source/feedgetter.py
@@ -69,7 +69,7 @@ class FeedGetter(object):
if conf.HTTP_PROXY == "":
self.proxy = urllib.request.ProxyHandler({})
else:
- self.proxy = urllib.request.ProxyHandler({"http":conf.HTTP_PROXY})
+ self.proxy = urllib.request.ProxyHandler({"http" : conf.HTTP_PROXY})
feedparser.USER_AGENT = conf.USER_AGENT
def retrieve_feed(self, feed_url=None, feed_original=None):
bgstack15