From 143c286f3ba455546de4bb455d46f136c77088bf Mon Sep 17 00:00:00 2001 From: "roberto@longshot" Date: Sun, 27 Feb 2011 05:54:20 +0100 Subject: [PATCH] fixed --eval --- plugins/python/python_plugin.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/python/python_plugin.c b/plugins/python/python_plugin.c index 030fabbb..8aa2233a 100644 --- a/plugins/python/python_plugin.c +++ b/plugins/python/python_plugin.c @@ -616,6 +616,9 @@ int uwsgi_python_manage_options(int i, char *optarg) { case LONG_ARGS_FILE_CONFIG: up.file_config = optarg; return 1; + case LONG_ARGS_EVAL_CONFIG: + up.eval = optarg; + return 1; case LONG_ARGS_PYMODULE_ALIAS: if (up.pymodule_alias_cnt < MAX_PYMODULE_ALIAS) { up.pymodule_alias[up.pymodule_alias_cnt] = optarg;