summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/xml/sax/handler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/xml/sax/handler.py b/Lib/xml/sax/handler.py
index cbbb959..27b19f9 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 =====