aboutsummaryrefslogtreecommitdiff
path: root/source/pyAggr3g470r.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/pyAggr3g470r.py')
-rwxr-xr-xsource/pyAggr3g470r.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index ad43bda6..05ec7479 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -606,8 +606,8 @@ class pyAggr3g470r(object):
self.mongo.delete_article(feed_id, article_id)
# Delete from the Whoosh index
search.delete_article(feed_id, article_id)
- except Exception as e:
- return self.error("<p>Bad URL. This article do not exists.</p>"+str(e))
+ except:
+ return self.error("<p>Bad URL. This article do not exists.</p>")
return self.index()
bgstack15