web/action.py
branchstable
changeset 7879 9aae456abab5
parent 7806 aa30c665bd06
child 7990 a673d1d9a738
--- a/web/action.py	Tue Sep 27 16:04:30 2011 +0200
+++ b/web/action.py	Wed Sep 28 09:27:42 2011 +0200
@@ -133,10 +133,13 @@
                   & partial_relation_possible(action='add', strict=True))
 
     submenu = 'addrelated'
+    # to be defined in concrete classes
+    target_etype = rtype = None
 
     def url(self):
         try:
-            ttype = self.etype # deprecated in 3.6, already warned by the selector
+            # deprecated in 3.6, already warned by the selector
+            ttype = self.etype # pylint: disable=E1101
         except AttributeError:
             ttype = self.target_etype
         entity = self.cw_rset.get_entity(self.cw_row or 0, self.cw_col or 0)