aboutsummaryrefslogtreecommitdiff
path: root/src/Database.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-05-21 10:45:24 +0100
committerGravatar jesopo2019-05-21 10:45:24 +0100
commit66780764906cf348baaabbad4e112d4e8a875f6c (patch)
tree7ac0136c50089f8e122395d35041d91d15372594 /src/Database.py
parentTypo, 'usernaame' -> 'username' (diff)
signature
Remove column from server.add SQL (leftover from removing 'ipv4' column)
Diffstat (limited to 'src/Database.py')
-rw-r--r--src/Database.py2
1 files changed, 1 insertions, 1 deletions
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(