We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1c8c7c commit 0604929Copy full SHA for 0604929
1 file changed
wrapper.cpp
@@ -500,8 +500,8 @@ int WrapperAPI wrapperNotify(pDataList *data) {
500
spdlog::debug("wrapperNotify");
501
502
int ret = 0;
503
- ret = retpyWrapper->wrapperNotify(data);
504
- if ret != 0 {
+ ret = pyWrapper->wrapperNotify(data);
+ if (ret != 0) {
505
spdlog::get("stderr_console")->error("wrapper notify error!");
506
return ret;
507
}
0 commit comments