From 4ced5e7675ac8664be82c7dc0e213201871a0983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20Gust=C3=A4bel?= Date: Tue, 24 Oct 2000 15:53:12 +0000 Subject: Fix bug in prepare_input_source (patched by Paul P., sourceforge.net down now, so can't find number). --- Lib/xml/sax/saxutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ def prepare_input_source(source, base = ""): 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() -- cgit v0.12