This commit is contained in:
forbes
2026-02-13 14:09:52 -06:00
parent 54f8006e24
commit 9a222823c8
2 changed files with 3 additions and 3 deletions

View File

@@ -2271,7 +2271,7 @@ PyObject* ApplicationPy::sRegisterEditingContext(PyObject* /*self*/, PyObject* a
}
catch (Py::Exception&) {
Base::PyException e;
e.ReportException();
e.reportException();
return false;
}
};
@@ -2322,7 +2322,7 @@ PyObject* ApplicationPy::sRegisterEditingOverlay(PyObject* /*self*/, PyObject* a
}
catch (Py::Exception&) {
Base::PyException e;
e.ReportException();
e.reportException();
return false;
}
};