aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/crawler.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-01-21 21:52:57 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-01-21 21:52:57 +0100
commit18414fc58852c0e41091dfc6c1c13d67170f9b12 (patch)
tree62ac3286c8a8acc6c1914359237e0c932babbca7 /pyaggr3g470r/crawler.py
parentSet the version of Python used by the crawler in the configuration file. (diff)
downloadnewspipe-18414fc58852c0e41091dfc6c1c13d67170f9b12.tar.gz
newspipe-18414fc58852c0e41091dfc6c1c13d67170f9b12.tar.bz2
newspipe-18414fc58852c0e41091dfc6c1c13d67170f9b12.zip
clean_url is now working with Python3
Diffstat (limited to 'pyaggr3g470r/crawler.py')
-rw-r--r--pyaggr3g470r/crawler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/crawler.py b/pyaggr3g470r/crawler.py
index 96da898d..42430b5e 100644
--- a/pyaggr3g470r/crawler.py
+++ b/pyaggr3g470r/crawler.py
@@ -96,7 +96,7 @@ def fetch(user, feed):
article.link, error)
continue
# remove utm_* parameters
- #nice_url = utils.clean_url(nice_url)
+ nice_url = utils.clean_url(nice_url)
description = ""
article_title = article.get('title', '')
bgstack15