summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorArtem Konev <artem.konev@nginx.com>2018-12-20 14:17:58 +0300
committerArtem Konev <artem.konev@nginx.com>2018-12-20 14:17:58 +0300
commit9c03079e3a4a7aead2f761a3a425bee065cc89d1 (patch)
tree676dd786362c949f305f3dfacdfca1900854331f
parentcebec46353b3a185f96520e012cbf52e40238cae (diff)
downloadunit-9c03079e3a4a7aead2f761a3a425bee065cc89d1.tar.gz
unit-9c03079e3a4a7aead2f761a3a425bee065cc89d1.tar.bz2
Python: fixed a typo in path error message.
Diffstat (limited to '')
-rw-r--r--src/nxt_python_wsgi.c2
1 files changed, 1 insertions, 1 deletions
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;
}