aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-14 14:51:53 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-14 14:51:53 +0200
commit665513c8b7fc33cf7272e3fb1025cced2fa839f9 (patch)
treecfc39d8e7760c1f6fd6a19e21bc5e479eddd4aba /pyaggr3g470r
parentUpdated translations. (diff)
downloadnewspipe-665513c8b7fc33cf7272e3fb1025cced2fa839f9.tar.gz
newspipe-665513c8b7fc33cf7272e3fb1025cced2fa839f9.tar.bz2
newspipe-665513c8b7fc33cf7272e3fb1025cced2fa839f9.zip
Strip '=' character at the end of URLs.
Diffstat (limited to 'pyaggr3g470r')
-rwxr-xr-xpyaggr3g470r/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/utils.py b/pyaggr3g470r/utils.py
index dcbf5027..0238e9e5 100755
--- a/pyaggr3g470r/utils.py
+++ b/pyaggr3g470r/utils.py
@@ -196,7 +196,7 @@ def clean_url(url):
parsed_url.params,
urllib.urlencode(filtered, doseq=True),
parsed_url.fragment
- ])
+ ]).rstrip('=')
def open_url(url):
bgstack15