diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-06-08 20:11:36 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-06-08 20:11:36 +0200 |
commit | 6816b5aa60f8276aeefcff996b6114d0eff45b88 (patch) | |
tree | 95d8c36506d671d3aa23e74e180a898a40604e29 | |
parent | Merged in jaesivsm/pyaggr3g470r (pull request #1) (diff) | |
download | newspipe-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.
-rwxr-xr-x | pyaggr3g470r/utils.py | 2 |
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 |