diff options
Diffstat (limited to 'pyload/plugin/crypter/TusfilesNet.py')
-rw-r--r-- | pyload/plugin/crypter/TusfilesNet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugin/crypter/TusfilesNet.py b/pyload/plugin/crypter/TusfilesNet.py index 8bf7cbe21..23d305003 100644 --- a/pyload/plugin/crypter/TusfilesNet.py +++ b/pyload/plugin/crypter/TusfilesNet.py @@ -2,7 +2,7 @@ import math import re -from urlparse import urljoin +import urlparse from pyload.plugin.internal.XFSCrypter import XFSCrypter @@ -28,7 +28,7 @@ class TusfilesNet(XFSCrypter): def loadPage(self, page_n): - return self.load(urljoin(self.pyfile.url, str(page_n)), decode=True) + return self.load(urlparse.urljoin(self.pyfile.url, str(page_n)), decode=True) def handlePages(self, pyfile): |