aboutsummaryrefslogtreecommitdiff
path: root/src/crawler
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-28 10:33:05 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-28 10:33:05 +0200
commit0c90ac01d2fd503905f1601959002c89146fc7f7 (patch)
treecdf354232f6618e591687179d63dde14bf9e183d /src/crawler
parenttest (diff)
downloadnewspipe-0c90ac01d2fd503905f1601959002c89146fc7f7.tar.gz
newspipe-0c90ac01d2fd503905f1601959002c89146fc7f7.tar.bz2
newspipe-0c90ac01d2fd503905f1601959002c89146fc7f7.zip
test
Diffstat (limited to 'src/crawler')
-rw-r--r--src/crawler/classic_crawler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crawler/classic_crawler.py b/src/crawler/classic_crawler.py
index dc367440..2e292624 100644
--- a/src/crawler/classic_crawler.py
+++ b/src/crawler/classic_crawler.py
@@ -122,7 +122,7 @@ async def insert_database(user, feed):
existing_article_req = art_contr.read(feed_id=feed.id,
**extract_id(article))
except Exception as e:
- print("existing_article_req: " + e)
+ print("existing_article_req: " + str(e))
continue
exist = existing_article_req.count() != 0
bgstack15