From 26a7983f086930b887731042dffb0f0899dedb81 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Thu, 6 Jul 2000 02:56:36 +0000 Subject: [PATCH] fix indentation in one docstring --- Lib/xml/sax/expatreader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/xml/sax/expatreader.py b/Lib/xml/sax/expatreader.py index f7517b18566..bd3a4675e3e 100644 --- a/Lib/xml/sax/expatreader.py +++ b/Lib/xml/sax/expatreader.py @@ -39,7 +39,7 @@ class ExpatParser( xmlreader.IncrementalParser, xmlreader.Locator ): # XMLReader methods def parse(self, stream_or_string ): - "Parse an XML document from a URL." + "Parse an XML document from a URL." if type( stream_or_string ) == type( "" ): stream=open( stream_or_string ) else: