diff options
Diffstat (limited to 'Lib/xml')
-rw-r--r-- | Lib/xml/dom/pulldom.py | 2 | ||||
-rw-r--r-- | Lib/xml/sax/handler.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/xml/dom/pulldom.py b/Lib/xml/dom/pulldom.py index 18f49b5..f0245c4 100644 --- a/Lib/xml/dom/pulldom.py +++ b/Lib/xml/dom/pulldom.py @@ -201,7 +201,7 @@ class PullDOM(xml.sax.ContentHandler): class ErrorHandler: def warning(self, exception): - print exception + print(exception) def error(self, exception): raise exception def fatalError(self, exception): 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 ===== |