Typo caught by /F -- thanks!

This commit is contained in:
Fred Drake 2000-12-15 23:56:43 +00:00
parent 23fff911a2
commit f16527c863
1 changed files with 1 additions and 1 deletions

View File

@ -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)