Fix usages of removed attributes

This commit is contained in:
Dan 2022-12-25 10:26:30 +01:00
parent b3825c209e
commit dbf2e471b5

View File

@ -38,13 +38,13 @@ class FileStorage(SQLiteStorage):
version = self.version()
if version == 1:
with self.lock, self.conn:
with self.conn:
self.conn.execute("DELETE FROM peers")
version += 1
if version == 2:
with self.lock, self.conn:
with self.conn:
self.conn.execute("ALTER TABLE sessions ADD api_id INTEGER")
version += 1