fix minor issues

This commit is contained in:
wmayer
2019-02-12 11:16:52 +01:00
parent 4e2ae6f408
commit 0c3bfc4ff3
2 changed files with 5 additions and 5 deletions

View File

@@ -48,7 +48,7 @@ PyObject *TrimmedCurvePy::PyMake(struct _typeobject *, PyObject *, PyObject *)
{
// never create such objects with the constructor
PyErr_SetString(PyExc_RuntimeError,
"You cannot create an instance of the abstract class 'BoundedCurve'.");
"You cannot create an instance of the abstract class 'TrimmedCurve'.");
return 0;
}