diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-06 17:06:59 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-06 17:06:59 -0500 |
commit | db260dc3feb931947309e88fa93063a0a37b6eda (patch) | |
tree | 50867f9cd23e2c6196f145eca32e39cd0ffdbe19 /coverage/ctracer/tracer.c | |
parent | 66dc96690399b6db97c638fefa8dcff626844900 (diff) | |
download | python-coveragepy-db260dc3feb931947309e88fa93063a0a37b6eda.tar.gz |
A new kind of plug-in: configurers. #563
Diffstat (limited to 'coverage/ctracer/tracer.c')
-rw-r--r-- | coverage/ctracer/tracer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/ctracer/tracer.c b/coverage/ctracer/tracer.c index 0ade741..6dcdc57 100644 --- a/coverage/ctracer/tracer.c +++ b/coverage/ctracer/tracer.c @@ -596,7 +596,7 @@ CTracer_disable_plugin(CTracer *self, PyObject * disposition) goto error; } msg = MyText_FromFormat( - "Disabling plugin '%s' due to previous exception", + "Disabling plug-in '%s' due to previous exception", MyText_AsString(plugin_name) ); if (msg == NULL) { @@ -622,7 +622,7 @@ error: /* This function doesn't return a status, so if an error happens, print it, * but don't interrupt the flow. */ /* PySys_WriteStderr is nicer, but is not in the public API. */ - fprintf(stderr, "Error occurred while disabling plugin:\n"); + fprintf(stderr, "Error occurred while disabling plug-in:\n"); PyErr_Print(); ok: |