aboutsummaryrefslogtreecommitdiff
path: root/newspipe/crawler
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-14 11:14:56 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-14 11:14:56 +0100
commit37760cba99a29b1eec44b1eef7c7df7deddaad56 (patch)
tree9c3e28de0341b0b369b5f79931403dadc3fd1dad /newspipe/crawler
parentMinor optimizations of the layout for the home page. (diff)
downloadnewspipe-37760cba99a29b1eec44b1eef7c7df7deddaad56.tar.gz
newspipe-37760cba99a29b1eec44b1eef7c7df7deddaad56.tar.bz2
newspipe-37760cba99a29b1eec44b1eef7c7df7deddaad56.zip
Improved the mamagement of parameter transferd via URL for the search of articles.
Diffstat (limited to 'newspipe/crawler')
-rw-r--r--newspipe/crawler/default_crawler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/crawler/default_crawler.py b/newspipe/crawler/default_crawler.py
index a0b5566a..3d6222e9 100644
--- a/newspipe/crawler/default_crawler.py
+++ b/newspipe/crawler/default_crawler.py
@@ -39,7 +39,7 @@ from newspipe.controllers import ArticleController, FeedController
from newspipe.lib.article_utils import (
construct_article,
extract_id,
- get_article_content
+ get_article_content,
)
from newspipe.lib.feed_utils import construct_feed_from, is_parsing_ok
from newspipe.lib.utils import newspipe_get
bgstack15