summaryrefslogtreecommitdiffstats
path: root/Lib/xml
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/xml')
-rw-r--r--Lib/xml/dom/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/dom/__init__.py b/Lib/xml/dom/__init__.py
index ca44b2d..0296567 100644
--- a/Lib/xml/dom/__init__.py
+++ b/Lib/xml/dom/__init__.py
@@ -64,7 +64,7 @@ class DOMException(Exception):
def __init__(self, *args, **kw):
if self.__class__ is DOMException:
raise RuntimeError(
- "DOMException should not be instaniated directly")
+ "DOMException should not be instantiated directly")
apply(Exception.__init__, (self,) + args, kw)