From f16527c86386f4a3fe793491bf7bdcd7ce74c8dc Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 15 Dec 2000 23:56:43 +0000 Subject: [PATCH] Typo caught by /F -- thanks! --- Lib/xml/dom/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/xml/dom/__init__.py b/Lib/xml/dom/__init__.py index ca44b2da2b6..0296567c456 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)