summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/hoster/FshareVn.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugin/hoster/FshareVn.py')
-rw-r--r--pyload/plugin/hoster/FshareVn.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/pyload/plugin/hoster/FshareVn.py b/pyload/plugin/hoster/FshareVn.py
index 47348f753..05f213680 100644
--- a/pyload/plugin/hoster/FshareVn.py
+++ b/pyload/plugin/hoster/FshareVn.py
@@ -2,8 +2,7 @@
import re
import time
-
-from urlparse import urljoin
+import urlparse
from pyload.network.RequestFactory import getURL
from pyload.plugin.internal.SimpleHoster import SimpleHoster, parseFileInfo
@@ -59,7 +58,7 @@ class FshareVn(SimpleHoster):
self.checkErrors()
action, inputs = self.parseHtmlForm('frm_download')
- url = urljoin(pyfile.url, action)
+ url = urlparse.urljoin(pyfile.url, action)
if not inputs:
self.error(_("No FORM"))