no need for a specific vid argument here
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 08 Feb 2010 21:21:31 +0100
changeset 4507 57927ad07e63
parent 4506 5b99f4a9f8ef
child 4508 b329af3315b6
no need for a specific vid argument here
web/views/baseviews.py
--- a/web/views/baseviews.py	Mon Feb 08 13:35:07 2010 +0100
+++ b/web/views/baseviews.py	Mon Feb 08 21:21:31 2010 +0100
@@ -316,8 +316,8 @@
             self.w(u'<h1>%s</h1>' % self.title)
         super(SameETypeListView, self).call(**kwargs)
 
-    def cell_call(self, row, col=0, vid=None, **kwargs):
-        self.wview(self.item_vid, self.cw_rset, row=row, col=col, vid=vid, **kwargs)
+    def cell_call(self, row, col=0, **kwargs):
+        self.wview(self.item_vid, self.cw_rset, row=row, col=col, **kwargs)
 
 
 class SameETypeListItemView(EntityView):