diff options
author | Skip Montanaro <skip@pobox.com> | 2000-07-06 02:55:41 +0000 |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2000-07-06 02:55:41 +0000 |
commit | a2dccfbc094df7e017520720a103342c90766491 (patch) | |
tree | 7aaf5a246bc54237a04e6a9d5fa2a67799685fa9 /Lib/xml/sax/handler.py | |
parent | 191a28218f66e3fa18b2371ebefc390f94a83620 (diff) | |
download | cpython-git-a2dccfbc094df7e017520720a103342c90766491.tar.gz |
fix indentation in three docstrings
Diffstat (limited to 'Lib/xml/sax/handler.py')
-rw-r--r-- | Lib/xml/sax/handler.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/xml/sax/handler.py b/Lib/xml/sax/handler.py index cbbb959379..27b19f9198 100644 --- a/Lib/xml/sax/handler.py +++ b/Lib/xml/sax/handler.py @@ -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 ===== |