diff options
Diffstat (limited to 'source/feedgetter.py')
-rwxr-xr-x | source/feedgetter.py | 2 |
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): |