diff options
-rwxr-xr-x | source/pyAggr3g470r.py | 4 |
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() |