diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-12 18:02:51 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-12 18:02:51 +0200 |
commit | 4e8fd1bfb7f77a7eba1880d61a60a70481a6341f (patch) | |
tree | b84736a8e5d329beaea0ecc5a47afb0471dc5e7b /pyload/webui | |
parent | Other import fixes (4) (diff) | |
download | pyload-4e8fd1bfb7f77a7eba1880d61a60a70481a6341f.tar.xz |
Fix dict generators for python 2.5
Diffstat (limited to 'pyload/webui')
-rw-r--r-- | pyload/webui/app/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/webui/app/utils.py b/pyload/webui/app/utils.py index 2e7cf76c5..5663c6f58 100644 --- a/pyload/webui/app/utils.py +++ b/pyload/webui/app/utils.py @@ -112,7 +112,7 @@ def login_required(perm=None): def toDict(obj): - return {att: getattr(obj, att) for att in obj.__slots__} + return dict((att, getattr(obj, att)) for att in obj.__slots__) class CherryPyWSGI(ServerAdapter): |