diff options
| author | 2019-05-21 10:45:24 +0100 | |
|---|---|---|
| committer | 2019-05-21 10:45:24 +0100 | |
| commit | 66780764906cf348baaabbad4e112d4e8a875f6c (patch) | |
| tree | 7ac0136c50089f8e122395d35041d91d15372594 /src/Database.py | |
| parent | Typo, '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.py | 2 |
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( |
