diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-06-30 07:27:30 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-06-30 07:27:30 (GMT) |
commit | d1b516c274aa1502514d7b3c51f63894480560e1 (patch) | |
tree | 13fe8179213a00b7f2e9ed08ae4062dd52037924 /Lib/xml | |
parent | 18476a3740b66cea8ee1dffa820c432a389ba23a (diff) | |
download | cpython-d1b516c274aa1502514d7b3c51f63894480560e1.zip cpython-d1b516c274aa1502514d7b3c51f63894480560e1.tar.gz cpython-d1b516c274aa1502514d7b3c51f63894480560e1.tar.bz2 |
Fix spacing.
Diffstat (limited to 'Lib/xml')
-rw-r--r-- | Lib/xml/sax/expatreader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/sax/expatreader.py b/Lib/xml/sax/expatreader.py index 68aee28..679ac21 100644 --- a/Lib/xml/sax/expatreader.py +++ b/Lib/xml/sax/expatreader.py @@ -330,7 +330,7 @@ class ExpatParser(xmlreader.IncrementalParser, xmlreader.Locator): def external_entity_ref(self, context, base, sysid, pubid): if not self._external_ges: return 1 - + source = self._ent_handler.resolveEntity(pubid, sysid) source = saxutils.prepare_input_source(source, self._source.getSystemId() or |