From 3ef26c71cb3c23a876b95af77f6541c06227a937 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sun, 3 Oct 2010 14:49:16 +0200 Subject: acc fixes, closed #134, closed #141 --- module/web/pyload/views.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'module/web/pyload/views.py') diff --git a/module/web/pyload/views.py b/module/web/pyload/views.py index 04a58ea68..678884790 100644 --- a/module/web/pyload/views.py +++ b/module/web/pyload/views.py @@ -328,21 +328,20 @@ def config(request): messages.append(_("All options were set correctly.")) accs = settings.PYLOAD.get_accounts() - for plugin,accounts in accs.iteritems(): + for accounts in accs.itervalues(): for data in accounts: if data["trafficleft"] == -1: data["trafficleft"] = _("unlimited") elif not data["trafficleft"]: - data["trafficleft"] = "" + data["trafficleft"] = _("not available") if data["validuntil"] == -1: data["validuntil"] = _("unlimited") elif not data["validuntil"]: - data["validuntil"] = "" + data["validuntil"] = _("not available") else: t = localtime(data["validuntil"]) data["validuntil"] = strftime("%d-%m-%Y",t) - return render_to_response(join(settings.TEMPLATE, 'settings.html'), RequestContext(request, {'conf': {'Plugin':plugin, 'General':conf, 'Accounts': accs}, 'errors': messages}, [status_proc])) -- cgit v1.2.3