From b5a0434710cdcdfd6ea501e62a539d00c0ecd3e5 Mon Sep 17 00:00:00 2001 From: Unbit Date: Sun, 2 Feb 2014 04:56:21 +0100 Subject: [PATCH] fixed #513 --- plugins/python/uwsgi_pymodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python/uwsgi_pymodule.c b/plugins/python/uwsgi_pymodule.c index 87bd2216..fbc13f55 100644 --- a/plugins/python/uwsgi_pymodule.c +++ b/plugins/python/uwsgi_pymodule.c @@ -1289,7 +1289,7 @@ PyObject *py_uwsgi_mule_get_msg(PyObject * self, PyObject * args, PyObject *kwar int timeout = -1; int manage_signals = 1, manage_farms = 1; - static char *kwlist[] = {"signals", "buffer_size", "timeout", "farms", NULL}; + static char *kwlist[] = {"signals", "farms", "buffer_size", "timeout", NULL}; if (uwsgi.muleid == 0) { return PyErr_Format(PyExc_ValueError, "you can receive mule messages only in a mule !!!");