aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-28 16:00:36 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-28 16:00:36 +0200
commit77952452c4fe23bf1a5c7191edb4b221f5f418bf (patch)
treeddcf7a7f945865fb9ac1114cf59d74e8ca1143f5 /src
parentfix (diff)
downloadnewspipe-77952452c4fe23bf1a5c7191edb4b221f5f418bf.tar.gz
newspipe-77952452c4fe23bf1a5c7191edb4b221f5f418bf.tar.bz2
newspipe-77952452c4fe23bf1a5c7191edb4b221f5f418bf.zip
test
Diffstat (limited to 'src')
-rw-r--r--src/crawler/classic_crawler.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/crawler/classic_crawler.py b/src/crawler/classic_crawler.py
index c3cfb6a3..6eaaee43 100644
--- a/src/crawler/classic_crawler.py
+++ b/src/crawler/classic_crawler.py
@@ -156,6 +156,7 @@ async def insert_database(user, feed):
art_contr.update({'entry_id': existing_article.entry_id},
existing_article.dump())
continue
+ print('new article!')
article = construct_article(article, feed)
try:
new_articles.append(art_contr.create(**article))
bgstack15