Fix building as Python module (manpage-generation)
This commit is contained in:
@@ -1560,10 +1560,10 @@ static PyObject *Matrix_adjugate(MatrixObject *self)
|
||||
adjoint_matrix_n(self->matrix, self->matrix, self->num_col);
|
||||
}
|
||||
else {
|
||||
PyErr_Format(PyExc_ValueError,
|
||||
"Matrix adjugate(d): size (%d) unsupported",
|
||||
(int)self->num_col);
|
||||
return NULL;
|
||||
PyErr_Format(PyExc_ValueError,
|
||||
"Matrix adjugate(d): size (%d) unsupported",
|
||||
(int)self->num_col);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user