mirror of
https://github.com/simon987/hexlib.git
synced 2025-04-04 02:12:59 +00:00
Fix PersistentState constructor
This commit is contained in:
parent
e267bbf1c8
commit
3bd9f03996
@ -278,7 +278,7 @@ class PersistentState:
|
||||
def __init__(self, dbfile="state.db", logger=None, table_factory=Table, **dbargs):
|
||||
self.dbfile = dbfile
|
||||
self.logger = logger
|
||||
if dbargs is None:
|
||||
if dbargs is None or dbargs == {}:
|
||||
dbargs = {"timeout": 30000}
|
||||
self.dbargs = dbargs
|
||||
self._table_factory = table_factory
|
||||
|
Loading…
x
Reference in New Issue
Block a user