summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-12-15 23:56:43 (GMT)
committerFred Drake <fdrake@acm.org>2000-12-15 23:56:43 (GMT)
commitf16527c86386f4a3fe793491bf7bdcd7ce74c8dc (patch)
tree922405b760ad4148ffb391db113515c5929f97ef /Lib
parent23fff911a2e0185d3f4618cd02a7b051b55fdd7e (diff)
downloadcpython-f16527c86386f4a3fe793491bf7bdcd7ce74c8dc.zip
cpython-f16527c86386f4a3fe793491bf7bdcd7ce74c8dc.tar.gz
cpython-f16527c86386f4a3fe793491bf7bdcd7ce74c8dc.tar.bz2
Typo caught by /F -- thanks!
Diffstat (limited to 'Lib')
-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)