aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
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