# HG changeset patch # User Sylvain Thénault # Date 1286812798 -7200 # Node ID a5bed0cd3956ab39c5a3f488a109b1693872361e # Parent ac7126d2cd734875a7f98c4998ad7eeb76a51ad6 [i18n cube] skip bw compat registries boxes and contentnavigation diff -r ac7126d2cd73 -r a5bed0cd3956 devtools/devctl.py --- a/devtools/devctl.py Mon Oct 11 14:45:25 2010 +0200 +++ b/devtools/devctl.py Mon Oct 11 17:59:58 2010 +0200 @@ -234,6 +234,8 @@ def _iter_vreg_objids(vreg, done): for reg, objdict in vreg.items(): + if reg in ('boxes', 'contentnavigation'): + continue for objects in objdict.values(): for obj in objects: objid = '%s_%s' % (reg, obj.__regid__)