From 17160e93529ad72805617b4b7674f28bd1a627d7 Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Wed, 25 Apr 2018 15:11:01 +0300 Subject: [PATCH] Python: added a missing slash in the path to "pyenv.cfg". This closes #115 issue on GitHub. --- src/nxt_python_wsgi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nxt_python_wsgi.c b/src/nxt_python_wsgi.c index ab9663a8..df3aa1c3 100644 --- a/src/nxt_python_wsgi.c +++ b/src/nxt_python_wsgi.c @@ -210,7 +210,7 @@ nxt_python_init(nxt_task_t *task, nxt_common_app_conf_t *conf) size_t size; nxt_int_t pep405; - static const char pyvenv[] = "pyvenv.cfg"; + static const char pyvenv[] = "/pyvenv.cfg"; static const char bin_python[] = "/bin/python"; #endif