From 0c062bbc1a12ed3253d5ceec38f15ba5d9d48ece Mon Sep 17 00:00:00 2001 From: Unbit Date: Wed, 25 Mar 2015 09:41:07 +0100 Subject: [PATCH] fixed typo --- plugins/python/python_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python/python_plugin.c b/plugins/python/python_plugin.c index 02c92ede..84b4b7fc 100644 --- a/plugins/python/python_plugin.c +++ b/plugins/python/python_plugin.c @@ -88,7 +88,7 @@ struct uwsgi_option uwsgi_python_options[] = { {"module", required_argument,'w', "load a WSGI module", uwsgi_opt_set_str, &up.wsgi_config, 0}, {"wsgi", required_argument, 'w', "load a WSGI module", uwsgi_opt_set_str, &up.wsgi_config, 0}, {"callable", required_argument, 0, "set default WSGI callable name", uwsgi_opt_set_str, &up.callable, 0}, - {"test", required_argument, 'J', "test a mdule import", uwsgi_opt_set_str, &up.test_module, 0}, + {"test", required_argument, 'J', "test a module import", uwsgi_opt_set_str, &up.test_module, 0}, {"home", required_argument, 'H', "set PYTHONHOME/virtualenv", uwsgi_opt_set_str, &up.home, 0}, {"virtualenv", required_argument, 'H', "set PYTHONHOME/virtualenv", uwsgi_opt_set_str, &up.home, 0}, {"venv", required_argument, 'H', "set PYTHONHOME/virtualenv", uwsgi_opt_set_str, &up.home, 0},