Python: removed wrong PyErr_Print() call.

PyCallable_Check() doesn't produce errors.

The needless call was introduced in fdd6ed28e3b9.
This commit is contained in:
Valentin Bartenev
2019-11-14 17:48:48 +03:00
parent b3db7a30c0
commit 4e41d90006

View File

@@ -322,7 +322,6 @@ nxt_python_init(nxt_task_t *task, nxt_common_app_conf_t *conf)
if (nxt_slow_path(PyCallable_Check(obj) == 0)) {
nxt_alert(task, "\"application\" in module \"%s\" "
"is not a callable object", nxt_py_module);
PyErr_Print();
goto fail;
}