diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-07 20:25:07 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-07 20:25:07 +0200 |
commit | 66dafb0de6003b7c563a05d054965d0e4fcb6447 (patch) | |
tree | 1b6b92fcb1493b5e040d6ae1e43c04f61a496108 /module | |
parent | Merge pull request #1968 from joberreiter/patch-2 (diff) | |
parent | Double URL Fix (diff) | |
download | pyload-66dafb0de6003b7c563a05d054965d0e4fcb6447.tar.xz |
Merge pull request #1964 from kasperj/stable
Double URL Fix
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/internal/Base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/Base.py b/module/plugins/internal/Base.py index 51be82bd4..1b2987322 100644 --- a/module/plugins/internal/Base.py +++ b/module/plugins/internal/Base.py @@ -378,7 +378,7 @@ class Base(Plugin): def fixurl(self, url, baseurl=None, unquote=True): - url = fixurl(url, unquote=False) + #url = fixurl(url, unquote=False) if not baseurl: baseurl = fixurl(self.pyfile.url) |