Issue #18874: Fix typo

This commit is contained in:
Victor Stinner 2013-11-26 01:18:52 +01:00
parent 2ead3d2448
commit 4dc74204c1
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ tracemalloc_get_frame(PyFrameObject *pyframe, frame_t *frame)
code = pyframe->f_code;
if (code == NULL) {
#ifdef TRACE_DEBUG
tracemalloc_error("failed to get the code object of the a frame");
tracemalloc_error("failed to get the code object of the frame");
#endif
return;
}