# HG changeset patch # User Sylvain Thénault # Date 1264587297 -3600 # Node ID bc8d7ac7034769ab5135a80370b18cbd039fe2a2 # Parent fbac86ca7af151bf1a25d086b0ae186fc333afad skip final relations at this point diff -r fbac86ca7af1 -r bc8d7ac70347 devtools/devctl.py --- a/devtools/devctl.py Wed Jan 27 10:17:27 2010 +0100 +++ b/devtools/devctl.py Wed Jan 27 11:14:57 2010 +0100 @@ -156,6 +156,8 @@ if eschema.final: continue for rschema, targetschemas, role in eschema.relation_definitions(True): + if rschema.final: + continue for tschema in targetschemas: fsections = afs.etype_get(eschema, rschema, role, tschema) if 'inlined_attributes' in fsections and \