From 5cda4b2183e84353f30e43e8a6279382064f0b00 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Thu, 3 Feb 2011 16:42:41 +0100 Subject: SO fix try --- module/plugins/Account.py | 9 ++++++--- module/plugins/hoster/ShareonlineBiz.py | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'module/plugins') diff --git a/module/plugins/Account.py b/module/plugins/Account.py index 9c46f5398..6eda09077 100644 --- a/module/plugins/Account.py +++ b/module/plugins/Account.py @@ -59,9 +59,12 @@ class Account(): finally: if req: req.close() - def relogin(self): - for user, data in self.accounts.iteritems(): - self._login(user, data) + def relogin(self, user): + req = self.getAccountRequest(user) + if req: + req.cj.clear() + req.close() + self._login(user, self.accounts[user]) def setAccounts(self, accounts): self.accounts = accounts 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)) -- cgit v1.2.3