use SliceList rather than SimpleList
[unfold.git] / plugins / simplelist.py
index d4cefb1..371e5d6 100644 (file)
@@ -3,9 +3,10 @@ from engine.plugin import Plugin
 class SimpleList (Plugin) :
 
     # only deal with our own stuff here and let Plugin handle the rest
-    def __init__ (self, list=[], with_datatables=False, **settings):
+    def __init__ (self, key, value, with_datatables=False, **settings):
         Plugin.__init__ (self, **settings)
-        self.list=list
+        self.key=key
+        self.value=value
         self.with_datatables = with_datatables
 
     # SimpleList is useless per se anyways