summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/mod_wsgi.c3
-rwxr-xr-xsrc/server/wsgi_version.h4
2 files changed, 5 insertions, 2 deletions
diff --git a/src/server/mod_wsgi.c b/src/server/mod_wsgi.c
index 6913373..375e35f 100644
--- a/src/server/mod_wsgi.c
+++ b/src/server/mod_wsgi.c
@@ -3703,6 +3703,9 @@ static PyObject *wsgi_load_source(apr_pool_t *pool, request_rec *r,
process_group, application_group, filename);
}
Py_END_ALLOW_THREADS
+
+ wsgi_log_python_error(r, NULL, filename, 0);
+
return NULL;
}
diff --git a/src/server/wsgi_version.h b/src/server/wsgi_version.h
index 7a86d8e..3f5467a 100755
--- a/src/server/wsgi_version.h
+++ b/src/server/wsgi_version.h
@@ -25,8 +25,8 @@
#define MOD_WSGI_MAJORVERSION_NUMBER 4
#define MOD_WSGI_MINORVERSION_NUMBER 6
-#define MOD_WSGI_MICROVERSION_NUMBER 1
-#define MOD_WSGI_VERSION_STRING "4.6.1"
+#define MOD_WSGI_MICROVERSION_NUMBER 2
+#define MOD_WSGI_VERSION_STRING "4.6.2"
/* ------------------------------------------------------------------------- */