From 2db634796bd5426c11f7849ce480265091f128c8 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 13 Apr 2015 17:34:59 +0200 Subject: Cleanup (2) --- pyload/database/Storage.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'pyload/database/Storage.py') 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)) -- cgit v1.2.3