dataimport.py
branchstable
changeset 7116 dfd4680a23f0
parent 7033 ddc1b4d80dbd
child 7118 e094b3d4eb95
--- a/dataimport.py	Mon Mar 28 15:16:11 2011 +0200
+++ b/dataimport.py	Mon Mar 28 15:15:49 2011 +0200
@@ -473,6 +473,11 @@
         self.rql('SET X %s Y WHERE X eid %%(x)s, Y eid %%(y)s' % rtype,
                  {'x': int(eid_from), 'y': int(eid_to)})
 
+    def find_entities(self, *args, **kwargs):
+        return self.session.find_entities(*args, **kwargs)
+
+    def find_one_entity(self, *args, **kwargs):
+        return self.session.find_one_entity(*args, **kwargs)
 
 # the import controller ########################################################