diff options
author | Artem Konev <artem.konev@nginx.com> | 2018-12-20 14:17:58 +0300 |
---|---|---|
committer | Artem Konev <artem.konev@nginx.com> | 2018-12-20 14:17:58 +0300 |
commit | 9c03079e3a4a7aead2f761a3a425bee065cc89d1 (patch) | |
tree | 676dd786362c949f305f3dfacdfca1900854331f | |
parent | cebec46353b3a185f96520e012cbf52e40238cae (diff) | |
download | unit-9c03079e3a4a7aead2f761a3a425bee065cc89d1.tar.gz unit-9c03079e3a4a7aead2f761a3a425bee065cc89d1.tar.bz2 |
Python: fixed a typo in path error message.
-rw-r--r-- | src/nxt_python_wsgi.c | 2 |
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; } |