Part: geometry extensions minor code clean up

This commit is contained in:
Abdullah Tahiri
2019-02-14 06:33:06 +01:00
committed by wmayer
parent 4d86374cb0
commit 006b470a20
5 changed files with 22 additions and 23 deletions

View File

@@ -61,7 +61,7 @@ PyObject* GeometryExtensionPy::copy(PyObject *args)
if (type->tp_new)
cpy = type->tp_new(type, this, 0);
if (!cpy) {
PyErr_SetString(PyExc_TypeError, "failed to create copy of geometry");
PyErr_SetString(PyExc_TypeError, "failed to create copy of the geometry extension");
return 0;
}