Issue #17989: fix typo in error message

This commit is contained in:
Eli Bendersky 2013-05-19 16:59:59 -07:00
parent dc49b2b88c
commit 6a55dc3b4a
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}