schemas/bootstrap.py
branchstable
changeset 5179 f08943f22334
parent 4755 13a5d3a7410e
child 5421 8167de96c523
--- a/schemas/bootstrap.py	Wed Apr 07 14:53:35 2010 +0200
+++ b/schemas/bootstrap.py	Thu Apr 08 09:07:54 2010 +0200
@@ -311,8 +311,9 @@
 def post_build_callback(schema):
     """set attributes permissions for schema/workflow entities"""
     from cubicweb.schema import SCHEMA_TYPES, WORKFLOW_TYPES, META_RTYPES
+    wftypes = WORKFLOW_TYPES - set(('TrInfo',))
     for eschema in schema.entities():
-        if eschema in SCHEMA_TYPES or eschema in WORKFLOW_TYPES:
+        if eschema in SCHEMA_TYPES or eschema in wftypes:
             for rschema in eschema.subject_relations():
                 if rschema.final and not rschema in META_RTYPES:
                     rdef = eschema.rdef(rschema)