summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/Plugin.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-08-02 17:13:17 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-08-02 17:14:54 +0200
commit5e15580202c44628f2fbfabad0c3f693975fb3c9 (patch)
treeee71375a4a374f96efd174572baa68850a58ab9d /module/plugins/internal/Plugin.py
parentMerge pull request #1659 from skpyl/stable (diff)
downloadpyload-5e15580202c44628f2fbfabad0c3f693975fb3c9.tar.xz
Fix https://github.com/pyload/pyload/issues/1663
Diffstat (limited to 'module/plugins/internal/Plugin.py')
-rw-r--r--module/plugins/internal/Plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Plugin.py b/module/plugins/internal/Plugin.py
index 570c984ac..ac6b4a57e 100644
--- a/module/plugins/internal/Plugin.py
+++ b/module/plugins/internal/Plugin.py
@@ -48,7 +48,7 @@ def exists(path):
#@TODO: Move to utils in 0.4.10
def fixurl(url):
- return html_unescape(urllib.unquote(url.decode('unicode-escape'))).strip()
+ return html_unescape(urllib.unquote(url.decode('unicode-escape'))).strip().rstrip('/')
#@TODO: Move to utils in 0.4.10
@@ -142,7 +142,7 @@ def chunks(iterable, size):
class Plugin(object):
__name__ = "Plugin"
__type__ = "hoster"
- __version__ = "0.26"
+ __version__ = "0.27"
__status__ = "testing"
__pattern__ = r'^unmatchable$'