web/views/euser.py
branchtls-sprint
changeset 688 cddfbdee0eb3
parent 680 99d0b471cc0c
child 692 800592b8d39b
--- a/web/views/euser.py	Tue Feb 17 20:34:20 2009 +0100
+++ b/web/views/euser.py	Tue Feb 17 20:39:09 2009 +0100
@@ -31,7 +31,7 @@
 
 
 class EUserPrimaryView(PrimaryView):
-    __selectors__ = (implements('EUser'),)
+    __selectors__ = implements('EUser')
     
     skip_attrs = ('firstname', 'surname')
     
@@ -51,7 +51,7 @@
                                  ]
 class FoafView(EntityView):
     id = 'foaf'
-    __selectors__ = (implements('EUser'),)
+    __selectors__ = implements('EUser')
     
     title = _('foaf')
     templatable = False
@@ -97,7 +97,7 @@
     """displays a simple euser / egroups editable table"""
     
     id = 'editgroups'
-    accepts = ('EUser',)
+    __selectors__ = implements('EUser')
     
     def call(self):
         self.req.add_css('cubicweb.acl.css')