X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/cf3e9383de633c9305a950ba5896376b14e43e12..a90810dd3bb7a1aaf77f9e9743015e96d1feb41a:/lib/python/python.cpp diff --git a/lib/python/python.cpp b/lib/python/python.cpp index a1ef1508..5e3ccc8d 100644 --- a/lib/python/python.cpp +++ b/lib/python/python.cpp @@ -104,7 +104,10 @@ int ePython::call(PyObject *pFunc, PyObject *pArgs) pValue = PyObject_CallObject(pFunc, pArgs); if (pValue != NULL) { - res = PyInt_AsLong(pValue); + if (PyInt_Check(pValue)) + res = PyInt_AsLong(pValue); + else + res = 0; Py_DECREF(pValue); } else {