From 4e41d900064bcccc02ec7efd0109c190d6637028 Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Thu, 14 Nov 2019 17:48:48 +0300 Subject: [PATCH] Python: removed wrong PyErr_Print() call. PyCallable_Check() doesn't produce errors. The needless call was introduced in fdd6ed28e3b9. --- src/nxt_python_wsgi.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/nxt_python_wsgi.c b/src/nxt_python_wsgi.c index d861a50a..037c1e02 100644 --- a/src/nxt_python_wsgi.c +++ b/src/nxt_python_wsgi.c @@ -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; }