fix indentation in three docstrings

This commit is contained in:
Skip Montanaro 2000-07-06 02:55:41 +00:00
parent 191a28218f
commit a2dccfbc09

View 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 =====