Author: bree
Date: Sun Jan 29 13:57:51 2006
New Revision: 2233

Modified:
   azax/trunk/config.py
   azax/trunk/tests/test_azaxresponse.py
Log:
Revert to import of official lxml

Modified: azax/trunk/config.py
==============================================================================
--- azax/trunk/config.py        (original)
+++ azax/trunk/config.py        Sun Jan 29 13:57:51 2006
@@ -2,7 +2,7 @@
 # ElemenTree or maybe even cElementTree
 
 try:
-    from Products.lxml import etree
+    from lxml import etree
 except ImportError:
     try:
         import cElementTree as etree

Modified: azax/trunk/tests/test_azaxresponse.py
==============================================================================
--- azax/trunk/tests/test_azaxresponse.py       (original)
+++ azax/trunk/tests/test_azaxresponse.py       Sun Jan 29 13:57:51 2006
@@ -128,7 +128,7 @@
 
 class LxmlTestCase(AzaxResponseTestCase):
     def afterSetUp(self):
-        from Products.lxml import etree
+        from lxml import etree
         config.etree = etree
 
     def test_etree(self):
@@ -137,7 +137,7 @@
 def test_suite():
     suites = []
     try:
-        from Products.lxml import etree
+        from lxml import etree
     except ImportError:
         pass
     else:
-- 
http://lists.nuxeo.com/mailman/listinfo/z3lab-checkins

Reply via email to