# HG changeset patch # User Julien Cristau # Date 1404916294 -7200 # Node ID 55d9d483e7c341114abaeee1498238bffce1119e # Parent e2d42ad10f98096187f1b4137f3e6baaab5afb97 [dataimport] don't commit on flush Changeset 26cdfc6dd6f8 introduced this confusion for no apparent reason, and it doesn't make much sense. diff -r e2d42ad10f98 -r 55d9d483e7c3 dataimport.py --- a/dataimport.py Wed Jul 09 15:35:28 2014 +0200 +++ b/dataimport.py Wed Jul 09 16:31:34 2014 +0200 @@ -575,12 +575,8 @@ return def flush(self): - """The method is provided so that all stores share a common API. - It just tries to call the commit method. - """ - print 'starting flush' - self.commit() - print 'flush done' + """The method is provided so that all stores share a common API""" + pass @property def nb_inserted_entities(self):