diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-02 23:29:42 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-02 23:29:42 +0200 |
commit | 939e1df66db2a3c5e174054d8e53ba36ed81b4da (patch) | |
tree | e70ef615da50d82484813a7e283b3fb3d3b0be2c | |
parent | fix 2. (diff) | |
download | pyload-939e1df66db2a3c5e174054d8e53ba36ed81b4da.tar.xz |
fix 3.
-rw-r--r-- | module/web/pyload/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/pyload/views.py b/module/web/pyload/views.py index 8b53f3214..04a58ea68 100644 --- a/module/web/pyload/views.py +++ b/module/web/pyload/views.py @@ -329,7 +329,7 @@ def config(request): accs = settings.PYLOAD.get_accounts() for plugin,accounts in accs.iteritems(): - for user,data in accounts.iteritems(): + for data in accounts: if data["trafficleft"] == -1: data["trafficleft"] = _("unlimited") elif not data["trafficleft"]: |