aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/utils.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-08 20:11:36 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-08 20:11:36 +0200
commit6816b5aa60f8276aeefcff996b6114d0eff45b88 (patch)
tree95d8c36506d671d3aa23e74e180a898a40604e29 /pyaggr3g470r/utils.py
parentMerged in jaesivsm/pyaggr3g470r (pull request #1) (diff)
downloadnewspipe-6816b5aa60f8276aeefcff996b6114d0eff45b88.tar.gz
newspipe-6816b5aa60f8276aeefcff996b6114d0eff45b88.tar.bz2
newspipe-6816b5aa60f8276aeefcff996b6114d0eff45b88.zip
A problem with urllib.quote() has been detected with the url: http://standblog.org/blog/post/2014/02/04/Confiance-en-Google-%3A-81-de-non.
Diffstat (limited to 'pyaggr3g470r/utils.py')
-rwxr-xr-xpyaggr3g470r/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/utils.py b/pyaggr3g470r/utils.py
index 320c49ce..1880aaa0 100755
--- a/pyaggr3g470r/utils.py
+++ b/pyaggr3g470r/utils.py
@@ -191,7 +191,7 @@ def clean_url(url):
return urlunparse([
parsed_url.scheme,
parsed_url.netloc,
- urllib.quote(parsed_url.path),
+ parsed_url.path,
parsed_url.params,
urllib.urlencode(filtered, doseq=True),
parsed_url.fragment
bgstack15