mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Fix usages of removed attributes
This commit is contained in:
parent
b3825c209e
commit
dbf2e471b5
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue