summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2000-07-06 02:56:36 (GMT)
committerSkip Montanaro <skip@pobox.com>2000-07-06 02:56:36 (GMT)
commit26a7983f086930b887731042dffb0f0899dedb81 (patch)
treec63100e2db97d5bbe2ffce6919dad72862b4060a /Lib
parenta2dccfbc094df7e017520720a103342c90766491 (diff)
downloadcpython-26a7983f086930b887731042dffb0f0899dedb81.zip
cpython-26a7983f086930b887731042dffb0f0899dedb81.tar.gz
cpython-26a7983f086930b887731042dffb0f0899dedb81.tar.bz2
fix indentation in one docstring
Diffstat (limited to 'Lib')
-rw-r--r--Lib/xml/sax/expatreader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/sax/expatreader.py b/Lib/xml/sax/expatreader.py
index f7517b1..bd3a467 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: