aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-28 16:03:42 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-28 16:03:42 +0200
commite33ccea46c4047a9ec2de462c583752f39ced077 (patch)
tree9b453b4f137e80c6a79dea35473392f57e0f9dde /src
parenttest (diff)
downloadnewspipe-e33ccea46c4047a9ec2de462c583752f39ced077.tar.gz
newspipe-e33ccea46c4047a9ec2de462c583752f39ced077.tar.bz2
newspipe-e33ccea46c4047a9ec2de462c583752f39ced077.zip
test
Diffstat (limited to 'src')
-rw-r--r--src/crawler/classic_crawler.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/crawler/classic_crawler.py b/src/crawler/classic_crawler.py
index 6eaaee43..c3cfb6a3 100644
--- a/src/crawler/classic_crawler.py
+++ b/src/crawler/classic_crawler.py
@@ -156,7 +156,6 @@ 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