fixed a garbage in python_call

This commit is contained in:
roberto@precise64
2012-03-28 10:21:20 +02:00
parent 792cd01320
commit f6b9345716
+1 -5
View File
@@ -95,13 +95,9 @@ int uwsgi_python_manage_exceptions(void) {
PyObject *python_call(PyObject *callable, PyObject *args, int catch, struct wsgi_request *wsgi_req) {
PyObject *pyret;
//uwsgi_log("ready to call %p %p\n", callable, args);
Py_INCREF(args);
pyret = PyEval_CallObject(callable, args);
PyObject *pyret = PyEval_CallObject(callable, args);
//uwsgi_log("called\n");