summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/xmlcore/sax/xmlreader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xmlcore/sax/xmlreader.py b/Lib/xmlcore/sax/xmlreader.py
index 6b37d37..1cade65 100644
--- a/Lib/xmlcore/sax/xmlreader.py
+++ b/Lib/xmlcore/sax/xmlreader.py
@@ -113,7 +113,7 @@ class IncrementalParser(XMLReader):
XMLReader.__init__(self)
def parse(self, source):
- import saxutils
+ from . import saxutils
source = saxutils.prepare_input_source(source)
self.prepareParser(source)