# HG changeset patch # User Sylvain Thénault # Date 1445437865 -7200 # Node ID 7357b14857951ea0e83ee32a983abd3c7f98129b # Parent 6205b89c3af6975d32f474df4d501f8e8711887c [dataimport] .finish method was missing from (NoHook)RQLObjectStore diff -r 6205b89c3af6 -r 7357b1485795 dataimport/stores.py --- a/dataimport/stores.py Wed Oct 21 16:08:57 2015 +0200 +++ b/dataimport/stores.py Wed Oct 21 16:31:05 2015 +0200 @@ -122,6 +122,10 @@ """Commit the database transaction.""" return self._commit() + def finish(self): + """Nothing to do once import is terminated for this store.""" + pass + @property def session(self): warnings.warn('[3.19] deprecated property.', DeprecationWarning, stacklevel=2)