summaryrefslogtreecommitdiff
path: root/coverage/ctracer/tracer.c
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-01-06 17:06:59 -0500
committerNed Batchelder <ned@nedbatchelder.com>2018-01-06 17:06:59 -0500
commit62699a318754c6811622d31cfab195b4dbc3775e (patch)
tree43771e501b7e5d8c4d9147517c46234726e1fc54 /coverage/ctracer/tracer.c
parent62a47468147c97379ea106b3f9c994445b4a08a4 (diff)
downloadpython-coveragepy-git-62699a318754c6811622d31cfab195b4dbc3775e.tar.gz
A new kind of plug-in: configurers. #563
Diffstat (limited to 'coverage/ctracer/tracer.c')
-rw-r--r--coverage/ctracer/tracer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/ctracer/tracer.c b/coverage/ctracer/tracer.c
index 0ade7412..6dcdc576 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: