[Checkins] SVN: Products.GenericSetup/trunk/Products/GenericSetup/testing.py Get the meta stuff loaded first, no matter what.

Tres Seaver tseaver at palladion.com
Wed Mar 31 13:28:04 EDT 2010


Log message for revision 110374:
  Get the meta stuff loaded first, no matter what.

Changed:
  U   Products.GenericSetup/trunk/Products/GenericSetup/testing.py

-=-
Modified: Products.GenericSetup/trunk/Products/GenericSetup/testing.py
===================================================================
--- Products.GenericSetup/trunk/Products/GenericSetup/testing.py	2010-03-31 16:14:18 UTC (rev 110373)
+++ Products.GenericSetup/trunk/Products/GenericSetup/testing.py	2010-03-31 17:28:04 UTC (rev 110374)
@@ -153,6 +153,9 @@
         except IOError:  # Zope <= 2.12.x
             pass
 
+        zcml.load_config('meta.zcml', Products.Five)
+        zcml.load_config('meta.zcml', Products.GenericSetup)
+
         try:
             zcml.load_config('permissions.zcml', AccessControl)
         except IOError:  # Zope <= 2.12.x
@@ -160,9 +163,6 @@
 
         zcml.load_config('configure.zcml', zope.traversing)
 
-        zcml.load_config('meta.zcml', Products.Five)
-        zcml.load_config('meta.zcml', Products.GenericSetup)
-
         zcml.load_config('permissions.zcml', Products.Five)
 
         zcml.load_config('configure.zcml', Products.GenericSetup)



More information about the checkins mailing list