From f323b2479422479be34f746e2a3a0edaf7244f82 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sat, 6 Nov 2010 12:50:39 +0100 Subject: account fix --- module/web/pyload/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'module/web/pyload/views.py') 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: -- cgit v1.2.3