Interpreter: Fix lack of notifier in DeveloperError call

This commit is contained in:
Abdullah Tahiri
2023-06-01 09:03:45 +02:00
committed by abdullahtahiriyo
parent dc08aa8e0f
commit 1307f708c7

View File

@@ -131,7 +131,7 @@ void PyException::ReportException () const
{
if (!_isReported) {
_isReported = true;
Base::Console().DeveloperError("%s%s: %s\n",
Base::Console().DeveloperError("pyException","%s%s: %s\n",
_stackTrace.c_str(), _errorType.c_str(), what());
}
}