summaryrefslogtreecommitdiffstats
path: root/pyload/database/Storage.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-13 17:34:59 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-13 17:34:59 +0200
commit2db634796bd5426c11f7849ce480265091f128c8 (patch)
tree5a54f7535e9c0ff1ec65f05f347b6eafbb496922 /pyload/database/Storage.py
parentCleanup (diff)
downloadpyload-2db634796bd5426c11f7849ce480265091f128c8.tar.xz
Cleanup (2)
Diffstat (limited to 'pyload/database/Storage.py')
-rw-r--r--pyload/database/Storage.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/pyload/database/Storage.py b/pyload/database/Storage.py
index bd7844d8d..a1dfb7e9f 100644
--- a/pyload/database/Storage.py
+++ b/pyload/database/Storage.py
@@ -5,9 +5,9 @@ from pyload.database import style
from pyload.database import DatabaseBackend
class StorageMethods(object):
- @style.queue
+ @style.queue
def setStorage(db, identifier, key, value):
db.c.execute("SELECT id FROM storage WHERE identifier=? AND key=?", (identifier, key))
if db.c.fetchone() is not None:
@@ -15,9 +15,8 @@ class StorageMethods(object):
else:
db.c.execute("INSERT INTO storage (identifier, key, value) VALUES (?, ?, ?)", (identifier, key, value))
- @style.queue
-
+ @style.queue
def getStorage(db, identifier, key=None):
if key is not None:
db.c.execute("SELECT value FROM storage WHERE identifier=? AND key=?", (identifier, key))
@@ -31,9 +30,8 @@ class StorageMethods(object):
d[row[0]] = row[1]
return d
- @style.queue
-
+ @style.queue
def delStorage(db, identifier, key):
db.c.execute("DELETE FROM storage WHERE identifier=? AND key=?", (identifier, key))