aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-07-25 08:08:53 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-07-25 08:08:53 +0200
commit8bd9538939cd44941cb12fb2e7172671939100b4 (patch)
treeb51611dad8b11770eeb0f8761808df3ef2eb45f6 /source
parentThe Whoosh index stays now in sync with the MongoDB database. (diff)
downloadnewspipe-8bd9538939cd44941cb12fb2e7172671939100b4.tar.gz
newspipe-8bd9538939cd44941cb12fb2e7172671939100b4.tar.bz2
newspipe-8bd9538939cd44941cb12fb2e7172671939100b4.zip
Removed debug print.
Diffstat (limited to 'source')
-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