summaryrefslogtreecommitdiffstats
path: root/pyload/database/Storage.py
diff options
context:
space:
mode:
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))