]> granicus.if.org Git - python/commitdiff
fix indentation in one docstring
authorSkip Montanaro <skip@pobox.com>
Thu, 6 Jul 2000 02:56:36 +0000 (02:56 +0000)
committerSkip Montanaro <skip@pobox.com>
Thu, 6 Jul 2000 02:56:36 +0000 (02:56 +0000)
Lib/xml/sax/expatreader.py

index f7517b185664a29eb62d1b2e4c9fd61b9a48ff1a..bd3a4675e3e869241755b520fc5f9a1e392ed76a 100644 (file)
@@ -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: