diff options
author | 2015-05-12 18:02:51 +0200 | |
---|---|---|
committer | 2015-05-12 18:02:51 +0200 | |
commit | 4e8fd1bfb7f77a7eba1880d61a60a70481a6341f (patch) | |
tree | b84736a8e5d329beaea0ecc5a47afb0471dc5e7b /pyload/Database/Storage.py | |
parent | Other import fixes (4) (diff) | |
download | pyload-4e8fd1bfb7f77a7eba1880d61a60a70481a6341f.tar.xz |
Fix dict generators for python 2.5
Diffstat (limited to 'pyload/Database/Storage.py')
-rw-r--r-- | pyload/Database/Storage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/Database/Storage.py b/pyload/Database/Storage.py index a19f67606..1d6922a89 100644 --- a/pyload/Database/Storage.py +++ b/pyload/Database/Storage.py @@ -25,7 +25,7 @@ class StorageMethods(object): return row[0] else: db.c.execute("SELECT key, value FROM storage WHERE identifier=?", (identifier,)) - return {row[0]: row[1] for row in db.c} + return dict((row[0], row[1]) for row in db.c) @style.queue |