]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix indentation in three docstrings
authorSkip Montanaro <skip@pobox.com>
Thu, 6 Jul 2000 02:55:41 +0000 (02:55 +0000)
committerSkip Montanaro <skip@pobox.com>
Thu, 6 Jul 2000 02:55:41 +0000 (02:55 +0000)
Lib/xml/sax/handler.py

index cbbb959379dc103064673464dc05828bf878a6c1..27b19f9198f594d794fdc6a16b3be586ead50992 100644 (file)
@@ -26,15 +26,15 @@ class ErrorHandler:
     only parameter."""
 
     def error(self, exception):
-       "Handle a recoverable error."
+        "Handle a recoverable error."
         raise exception
 
     def fatalError(self, exception):
-       "Handle a non-recoverable error."
+        "Handle a non-recoverable error."
         raise exception
 
     def warning(self, exception):
-       "Handle a warning."   
+        "Handle a warning."   
         print exception
 
 # ===== CONTENTHANDLER =====