From 9c03079e3a4a7aead2f761a3a425bee065cc89d1 Mon Sep 17 00:00:00 2001 From: Artem Konev Date: Thu, 20 Dec 2018 14:17:58 +0300 Subject: [PATCH] Python: fixed a typo in path error message. --- 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 739ee0b9..df1c74ad 100644 --- a/src/nxt_python_wsgi.c +++ b/src/nxt_python_wsgi.c @@ -284,7 +284,7 @@ nxt_python_init(nxt_task_t *task, nxt_common_app_conf_t *conf) c->path.length); if (nxt_slow_path(obj == NULL)) { - nxt_alert(task, "Python failed create string object \"%V\"", + nxt_alert(task, "Python failed to create string object \"%V\"", &c->path); goto fail; }