diff options
| author | 2010-11-06 12:50:39 +0100 | |
|---|---|---|
| committer | 2010-11-06 12:50:39 +0100 | |
| commit | f323b2479422479be34f746e2a3a0edaf7244f82 (patch) | |
| tree | be56966a866e6a8dc2b5026d99e3531ab8f74b5e | |
| parent | lock fix (diff) | |
| download | pyload-f323b2479422479be34f746e2a3a0edaf7244f82.tar.xz | |
account fix
| -rw-r--r-- | module/AccountManager.py | 2 | ||||
| -rw-r--r-- | module/web/pyload/views.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/module/AccountManager.py b/module/AccountManager.py index 202032052..70f694fcc 100644 --- a/module/AccountManager.py +++ b/module/AccountManager.py @@ -39,7 +39,7 @@ class AccountManager(): self.initAccountPlugins() - self.accountInfoCache = [] + self.accountInfoCache = {} self.loadAccounts() diff --git a/module/web/pyload/views.py b/module/web/pyload/views.py index cfcd43061..ec690db1a 100644 --- a/module/web/pyload/views.py +++ b/module/web/pyload/views.py @@ -11,6 +11,7 @@ from urllib import unquote from itertools import chain from datetime import datetime from time import localtime, strftime +from copy import deepcopy from django.conf import settings from django.contrib.auth.decorators import login_required @@ -341,7 +342,7 @@ def config(request): else: messages.append(_("All options were set correctly.")) - accs = settings.PYLOAD.get_accounts() + accs = deepcopy(settings.PYLOAD.get_accounts()) for accounts in accs.itervalues(): for data in accounts: if data["trafficleft"] == -1: |
