summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-04-30 02:32:45 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-04-30 02:32:45 (GMT)
commit5584245f584edc88d02bdebf7864e31f086622c6 (patch)
treefd4f48e4221e8b41f50d9104272420fb2f56f427 /Lib
parentcab109779881ee4996a895499fce08380a63f315 (diff)
downloadcpython-5584245f584edc88d02bdebf7864e31f086622c6.zip
cpython-5584245f584edc88d02bdebf7864e31f086622c6.tar.gz
cpython-5584245f584edc88d02bdebf7864e31f086622c6.tar.bz2
Some of the test cases were failing due to the busted (relative) import.
This fixes some of the failures, but there are still more.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/xmlcore/etree/ElementInclude.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xmlcore/etree/ElementInclude.py b/Lib/xmlcore/etree/ElementInclude.py
index 974cc21..d7f85b3 100644
--- a/Lib/xmlcore/etree/ElementInclude.py
+++ b/Lib/xmlcore/etree/ElementInclude.py
@@ -49,7 +49,7 @@
##
import copy
-import ElementTree
+from . import ElementTree
XINCLUDE = "{http://www.w3.org/2001/XInclude}"