diff options
Diffstat (limited to 'module/database/StorageDatabase.py')
-rw-r--r-- | module/database/StorageDatabase.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/database/StorageDatabase.py b/module/database/StorageDatabase.py index 3ed29625f..a27866632 100644 --- a/module/database/StorageDatabase.py +++ b/module/database/StorageDatabase.py @@ -27,7 +27,7 @@ class StorageMethods(): db.c.execute("UPDATE storage SET value=? WHERE identifier=? AND key=?", (value, identifier, key)) else: db.c.execute("INSERT INTO storage (identifier, key, value) VALUES (?, ?, ?)", (identifier, key, value)) - + @style.queue def getStorage(db, identifier, key=None): if key is not None: @@ -41,7 +41,7 @@ class StorageMethods(): for row in db.c: d[row[0]] = row[1] return d - + @style.queue def delStorage(db, identifier, key): db.c.execute("DELETE FROM storage WHERE identifier=? AND key=?", (identifier, key)) |