Skip to content

Commit fa98f64

Browse files
committed
Improve an error message
1 parent fbecfdb commit fa98f64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/remote_debugging.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ send_exec_to_proc_handle(proc_handle_t *handle, int tid, const char *debugger_sc
781781
}
782782

783783
if (interpreter_state_addr == 0) {
784-
PyErr_SetString(PyExc_RuntimeError, "No interpreter state found");
784+
PyErr_SetString(PyExc_RuntimeError, "Can't find a running interpreter in the remote process");
785785
return -1;
786786
}
787787

0 commit comments

Comments
 (0)