diff options
Diffstat (limited to 'ebus/datastore.py')
-rw-r--r-- | ebus/datastore.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ebus/datastore.py b/ebus/datastore.py index 930b4fb..3ac63e1 100644 --- a/ebus/datastore.py +++ b/ebus/datastore.py @@ -1,8 +1,8 @@ # - import os from threading import Lock import tables +import logging class ValueFloat(tables.IsDescription): timestamp = tables.Time32Col() #index on Time64 is broken on pytables 2.4 @@ -97,3 +97,4 @@ class Datastore(object): for file in self.files.values(): file.close() + |