Renamed table class attribute
authortflorac@dagon.home
Thu, 05 Apr 2018 23:03:58 +0200
changeset 60 87b52b69492d
parent 59 c16a44de14ac
child 61 2ae762f667cb
Renamed table class attribute
src/pyams_zmi/zmi/table.py
--- a/src/pyams_zmi/zmi/table.py	Thu Apr 05 23:01:57 2018 +0200
+++ b/src/pyams_zmi/zmi/table.py	Thu Apr 05 23:03:58 2018 +0200
@@ -32,11 +32,11 @@
     title = None
 
     fields = field.Fields(Interface)
-    table_factory = None
+    table_class = None
 
     def __init__(self, context, request, view):
         super(InnerTableView, self).__init__(context, request, view)
-        self.table = self.table_factory(context, request)
+        self.table = self.table_class(context, request)
         self.table.view = self
 
     def update(self):