aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-10-20 07:30:51 +0200
committercedricbonhomme <devnull@localhost>2010-10-20 07:30:51 +0200
commit583455366e3d56166bde54de9dc0771b89b94767 (patch)
tree29c5847d3606a1c91510ec1f4382aa85da1633eb /pyAggr3g470r.py
parentAutomatically added a new stream for test. Success ;-) (diff)
downloadnewspipe-583455366e3d56166bde54de9dc0771b89b94767.tar.gz
newspipe-583455366e3d56166bde54de9dc0771b89b94767.tar.bz2
newspipe-583455366e3d56166bde54de9dc0771b89b94767.zip
Minor bugfix when detecting an RSS stream in a Web page.
Diffstat (limited to 'pyAggr3g470r.py')
-rwxr-xr-xpyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 584ec9a5..48f0f8f2 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -944,7 +944,7 @@ class Root:
# search the feed in the HTML page with BeautifulSoup
feed_url = utils.search_feed(url)
if feed_url is None:
- self.error_page("Impossible to find a feed at this URL.")
+ return self.error_page("Impossible to find a feed at this URL.")
# if a feed exists
else:
result = utils.add_feed(feed_url)
bgstack15