Commit 13c22f3b authored by Vincent Castellano's avatar Vincent Castellano

Need to pass tuple to a method call

parent a06507d4
...@@ -401,7 +401,7 @@ void py_on_loop () { ...@@ -401,7 +401,7 @@ void py_on_loop () {
return; return;
} }
result = PyEval_CallObject(_py_on_loop, Py_None); result = PyEval_CallObject(_py_on_loop, Py_BuildValue("()"));
if(result == NULL) if(result == NULL)
PyErr_Print(); PyErr_Print();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment