[Erp5-report] r22206 - /erp5/trunk/products/ERP5/tests/testContributionRegistryTool.py

nobody at svn.erp5.org nobody at svn.erp5.org
Wed Jul 2 09:57:15 CEST 2008


Author: jerome
Date: Wed Jul  2 09:57:12 2008
New Revision: 22206

URL: http://svn.erp5.org?rev=22206&view=rev
Log:
zope 2.7 compatibility

Modified:
    erp5/trunk/products/ERP5/tests/testContributionRegistryTool.py

Modified: erp5/trunk/products/ERP5/tests/testContributionRegistryTool.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/tests/testContributionRegistryTool.py?rev=22206&r1=22205&r2=22206&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/tests/testContributionRegistryTool.py (original)
+++ erp5/trunk/products/ERP5/tests/testContributionRegistryTool.py Wed Jul  2 09:57:12 2008
@@ -28,7 +28,10 @@
 
 import unittest
 from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
-from transaction import get_transaction
+try:
+  from transaction import get_transaction
+except ImportError:
+  pass
 
 
 class TestContributionRegistryTool(ERP5TypeTestCase):




More information about the Erp5-report mailing list