From 0326c1d508dcac63764cc2740dd307bfbbc67571 Mon Sep 17 00:00:00 2001 From: Adam Wentz Date: Sun, 10 Nov 2013 14:08:41 -0600 Subject: [PATCH] Fixed spelling of error message in pyloader.c --- plugins/python/pyloader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python/pyloader.c b/plugins/python/pyloader.c index 5ee3f8f3..6f75905b 100644 --- a/plugins/python/pyloader.c +++ b/plugins/python/pyloader.c @@ -205,7 +205,7 @@ int init_uwsgi_app(int loader, void *arg1, struct wsgi_request *wsgi_req, PyThre app_list = PyDict_Keys(applications); multiapp = PyList_Size(app_list); if (multiapp < 1) { - uwsgi_log("you have to define at least one app in the apllications dictionary\n"); + uwsgi_log("you have to define at least one app in the applications dictionary\n"); goto doh; }