diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-02-03 16:42:41 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-02-03 16:42:41 +0100 |
commit | 5cda4b2183e84353f30e43e8a6279382064f0b00 (patch) | |
tree | 0895181cd5f4aa0c5d4ff1891442f160347a7a37 /module/plugins/hoster/ShareonlineBiz.py | |
parent | added simplejson (diff) | |
download | pyload-5cda4b2183e84353f30e43e8a6279382064f0b00.tar.xz |
SO fix try
Diffstat (limited to 'module/plugins/hoster/ShareonlineBiz.py')
-rw-r--r-- | module/plugins/hoster/ShareonlineBiz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/ShareonlineBiz.py b/module/plugins/hoster/ShareonlineBiz.py index 31cbc8285..8ed9cdce8 100644 --- a/module/plugins/hoster/ShareonlineBiz.py +++ b/module/plugins/hoster/ShareonlineBiz.py @@ -124,7 +124,7 @@ class ShareonlineBiz(Hoster): return re.search('loadfilelink\.decode\("(.*?)"\);', self.html, re.S).group(1) except: self.log.debug("Login issue, trying again") - self.account.relogin() + self.account.relogin(self.user) self.retry() file_url_pattern = r'var\sdl="(.*?)"' return b64decode(re.search(file_url_pattern, self.html).group(1)) |