Browse Source

Change target_cls for target in select arguments list

prieto 8 years ago
parent
commit
c165ff101f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      plugins/dummy_datasource/datasource.py

+ 1
- 1
plugins/dummy_datasource/datasource.py View File

@@ -24,7 +24,7 @@ class DummyDatasource(object):
24 24
     #@param offset int: used with limit to choose the start record
25 25
     #@param instanciate bool : If true, the records are returned as instances, else they are returned as dict
26 26
     #@return list
27
-    def select(self, target_cls, field_list, filters, rel_filters=None, order=None, group=None, limit=None, offset=0,
27
+    def select(self, target, field_list, filters, rel_filters=None, order=None, group=None, limit=None, offset=0,
28 28
                instanciate=True):
29 29
         pass
30 30
 

Loading…
Cancel
Save