From 2ff2fb0495febe11d5015d2308d67e1d8048e597 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Thu, 10 Apr 2014 13:37:02 +0200 Subject: Some code cosmetics about commas, spaces and quotes Merges #577 --- module/database/StorageDatabase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/database/StorageDatabase.py') 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] -- cgit v1.2.3