From 66780764906cf348baaabbad4e112d4e8a875f6c Mon Sep 17 00:00:00 2001 From: jesopo Date: Tue, 21 May 2019 10:45:24 +0100 Subject: [PATCH] Remove column from server.add SQL (leftover from removing 'ipv4' column) --- src/Database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database.py b/src/Database.py index 6c276754..f25921fb 100644 --- a/src/Database.py +++ b/src/Database.py @@ -16,7 +16,7 @@ class Servers(Table): self.database.execute( """INSERT INTO servers (alias, hostname, port, password, tls, bindhost, nickname, username, realname) VALUES ( - ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""", + ?, ?, ?, ?, ?, ?, ?, ?, ?)""", [alias, hostname, port, password, tls, bindhost, nickname, username, realname]) return self.database.execute_fetchone(