commit | 4ced5e7675ac8664be82c7dc0e213201871a0983 | [log] [tgz] |
---|---|---|
author | Lars Gustäbel <lars@gustaebel.de> | Tue Oct 24 15:53:12 2000 +0000 |
committer | Lars Gustäbel <lars@gustaebel.de> | Tue Oct 24 15:53:12 2000 +0000 |
tree | 984418dccb0b10b0ad8d99dfcb2130ce7bafa904 | |
parent | cfd3bd838c61640a49671227fb428472cf54c6c4 [diff] |
Fix bug in prepare_input_source (patched by Paul P., sourceforge.net down now, so can't find number).
diff --git a/Lib/xml/sax/saxutils.py b/Lib/xml/sax/saxutils.py index 5d784bd..83c779f 100644 --- a/Lib/xml/sax/saxutils.py +++ b/Lib/xml/sax/saxutils.py
@@ -218,7 +218,7 @@ source = xmlreader.InputSource() source.setByteStream(f) if hasattr(f, "name"): - f.setSystemId(f.name) + source.setSystemId(f.name) if source.getByteStream() is None: sysid = source.getSystemId()