Fix cElementTree import

This commit is contained in:
Pauli Virtanen 2009-06-28 17:09:58 +03:00
parent 25429bcdf4
commit 53bdb60a77

View File

@ -31,7 +31,7 @@ except ImportError:
try: try:
import elementtree.ElementTree as etree import elementtree.ElementTree as etree
except ImportError: except ImportError:
import cElementTree.ElemenTree as etree import cElementTree as etree
try: try:
import gzip import gzip