]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix XMLFilterBase.resolveEntity() so the caller gets the result
authorFred Drake <fdrake@acm.org>
Thu, 3 Feb 2005 17:30:46 +0000 (17:30 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 3 Feb 2005 17:30:46 +0000 (17:30 +0000)
(PyXML bug #1112052)

Lib/xml/sax/saxutils.py

index 11dd25bbe216f1104895a1f46f61be472adceb4a..582b0089c4bf6d98e636198d085f21ef3ba9d709 100644 (file)
@@ -232,7 +232,7 @@ class XMLFilterBase(xmlreader.XMLReader):
     # EntityResolver methods
 
     def resolveEntity(self, publicId, systemId):
-        self._ent_handler.resolveEntity(publicId, systemId)
+        return self._ent_handler.resolveEntity(publicId, systemId)
 
     # XMLReader methods