diff options
Diffstat (limited to 'module/database/StorageDatabase.py')
-rw-r--r-- | module/database/StorageDatabase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/database/StorageDatabase.py b/module/database/StorageDatabase.py index a27866632..049f229f3 100644 --- a/module/database/StorageDatabase.py +++ b/module/database/StorageDatabase.py @@ -36,7 +36,7 @@ class StorageMethods(): if row is not None: return row[0] else: - db.c.execute("SELECT key, value FROM storage WHERE identifier=?", (identifier, )) + db.c.execute("SELECT key, value FROM storage WHERE identifier=?", (identifier,)) d = {} for row in db.c: d[row[0]] = row[1] |