From 266a19809aeb5e73ab1393dc14206b45ea62ab39 Mon Sep 17 00:00:00 2001 From: Joshua Tzucker Date: Wed, 13 Apr 2022 00:38:40 -0700 Subject: [PATCH] Fix typo in README example command - `--config-subProcess` -> `--configure-subProcess` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4570b428..797c3b56 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ The following command injects the debugger into a process with a given PID that ### Ignoring subprocesses The following command will ignore subprocesses started by the debugged process. ```console --m debugpy --listen localhost:5678 --pid 12345 --config-subProcess False +-m debugpy --listen localhost:5678 --pid 12345 --configure-subProcess False ```