diff options
Diffstat (limited to 'portato/db/dict.py')
-rw-r--r-- | portato/db/dict.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/portato/db/dict.py b/portato/db/dict.py index 5c5ca49..d230821 100644 --- a/portato/db/dict.py +++ b/portato/db/dict.py @@ -24,9 +24,10 @@ class DictDatabase (Database): lock = Database.lock - def __init__ (self): + def __init__ (self, session): """Constructor.""" Database.__init__(self) + self.session = session self.__initialize() self.populate() |