summaryrefslogtreecommitdiffstats
path: root/storperf/db/configuration_db.py
diff options
context:
space:
mode:
Diffstat (limited to 'storperf/db/configuration_db.py')
-rw-r--r--storperf/db/configuration_db.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/storperf/db/configuration_db.py b/storperf/db/configuration_db.py
index 700588d..b12394e 100644
--- a/storperf/db/configuration_db.py
+++ b/storperf/db/configuration_db.py
@@ -51,9 +51,9 @@ class ConfigurationDB(object):
db = sqlite3.connect(ConfigurationDB.db_name)
cursor = db.cursor()
- cursor.execute(
- "delete from configuration where configuration_name=? and key=?",
- (configuration_name, key))
+ cursor.execute("delete from configuration where "
+ "configuration_name=? and key=?",
+ (configuration_name, key))
self.logger.debug("Deleted " + configuration_name + ":" + key)
@@ -105,9 +105,9 @@ class ConfigurationDB(object):
db = sqlite3.connect(ConfigurationDB.db_name)
cursor = db.cursor()
- cursor.execute(
- "delete from configuration where configuration_name=? and key=?",
- (configuration_name, key))
+ cursor.execute("delete from configuration where "
+ "configuration_name=? and key=?",
+ (configuration_name, key))
cursor.execute(
"""insert into configuration(configuration_name, key, value)