diff options
author | Guido van Rossum <guido@python.org> | 2006-08-17 09:10:09 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-08-17 09:10:09 +0000 |
commit | 3b271054d7b2300d94f7f1bd3cb48d513d371c70 (patch) | |
tree | e0886cc8bd38630184d23f4d78ff52e0501d48f9 /Lib/xml/sax/saxutils.py | |
parent | ba205d6971db8ec8523e7a8f5a86422b1bfcc9f5 (diff) | |
download | cpython-git-3b271054d7b2300d94f7f1bd3cb48d513d371c70.tar.gz |
Use explicit relative import to make this work again.
Diffstat (limited to 'Lib/xml/sax/saxutils.py')
-rw-r--r-- | Lib/xml/sax/saxutils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/xml/sax/saxutils.py b/Lib/xml/sax/saxutils.py index a4965192fa..b5b9ff3362 100644 --- a/Lib/xml/sax/saxutils.py +++ b/Lib/xml/sax/saxutils.py @@ -4,8 +4,8 @@ convenience of application and driver writers. """ import os, urlparse, urllib, types -import handler -import xmlreader +from . import handler +from . import xmlreader try: _StringTypes = [types.StringType, types.UnicodeType] |