From: Fred Drake Date: Fri, 15 Dec 2000 23:56:43 +0000 (+0000) Subject: Typo caught by /F -- thanks! X-Git-Tag: v2.1a1~549 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f16527c86386f4a3fe793491bf7bdcd7ce74c8dc;p=python Typo caught by /F -- thanks! --- diff --git a/Lib/xml/dom/__init__.py b/Lib/xml/dom/__init__.py index ca44b2da2b..0296567c45 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)