[dataimport] don't commit on flush
Changeset 26cdfc6dd6f8 introduced this confusion for no apparent reason,
and it doesn't make much sense.
--- 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):