]> granicus.if.org Git - python/commitdiff
Fix inconsistent use of space/tabs.
authorThomas Wouters <thomas@python.org>
Mon, 25 Sep 2000 00:11:37 +0000 (00:11 +0000)
committerThomas Wouters <thomas@python.org>
Mon, 25 Sep 2000 00:11:37 +0000 (00:11 +0000)
Lib/xml/sax/handler.py

index 0931014cd3c3dcda1cb71c57270c34db6e8a2cce..cf266e95cb5eecf41eba12d58a80b6e3f6ecf9f0 100644 (file)
@@ -212,10 +212,10 @@ class DTDHandler:
     parsing (unparsed entities and attributes)."""
 
     def notationDecl(self, name, publicId, systemId):
-       "Handle a notation declaration event."
+        "Handle a notation declaration event."
 
     def unparsedEntityDecl(self, name, publicId, systemId, ndata):
-       "Handle an unparsed entity declaration event."
+        "Handle an unparsed entity declaration event."
 
         
 # ===== ENTITYRESOLVER =====
@@ -228,10 +228,10 @@ class EntityResolver:
     this interface with the default behaviour."""
     
     def resolveEntity(self, publicId, systemId):
-       """Resolve the system identifier of an entity and return either
+        """Resolve the system identifier of an entity and return either
         the system identifier to read from as a string, or an InputSource
         to read from."""
-       return systemId
+        return systemId
 
 
 #============================================================================