diff options
Diffstat (limited to 'Modules/_elementtree.c')
-rw-r--r-- | Modules/_elementtree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_elementtree.c b/Modules/_elementtree.c index a568cd3..029ff7b 100644 --- a/Modules/_elementtree.c +++ b/Modules/_elementtree.c @@ -1837,7 +1837,7 @@ element_setattro(ElementObject* self, PyObject* nameobj, PyObject* value) Py_INCREF(self->extra->attrib); } else { PyErr_SetString(PyExc_AttributeError, - "Can't set arbitraty attributes on Element"); + "Can't set arbitrary attributes on Element"); return -1; } |