[i18n cube] skip bw compat registries boxes and contentnavigation
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 11 Oct 2010 17:59:58 +0200
changeset 6443 a5bed0cd3956
parent 6442 ac7126d2cd73
child 6444 cc091175d3da
[i18n cube] skip bw compat registries boxes and contentnavigation
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__)