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 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'module/plugins/Account.py') 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 -- cgit v1.2.3