diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-07-25 08:08:53 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-07-25 08:08:53 +0200 |
commit | 8bd9538939cd44941cb12fb2e7172671939100b4 (patch) | |
tree | b51611dad8b11770eeb0f8761808df3ef2eb45f6 /source | |
parent | The Whoosh index stays now in sync with the MongoDB database. (diff) | |
download | newspipe-8bd9538939cd44941cb12fb2e7172671939100b4.tar.gz newspipe-8bd9538939cd44941cb12fb2e7172671939100b4.tar.bz2 newspipe-8bd9538939cd44941cb12fb2e7172671939100b4.zip |
Removed debug print.
Diffstat (limited to 'source')
-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() |