diff options
Diffstat (limited to 'Lib/xml/sax/handler.py')
-rw-r--r-- | Lib/xml/sax/handler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/sax/handler.py b/Lib/xml/sax/handler.py index f9e91b6..481733d 100644 --- a/Lib/xml/sax/handler.py +++ b/Lib/xml/sax/handler.py @@ -39,7 +39,7 @@ class ErrorHandler: def warning(self, exception): "Handle a warning." - print exception + print(exception) # ===== CONTENTHANDLER ===== |