Update README.md

Corrected pid parameter usage.
This commit is contained in:
fritzmark 2020-11-01 12:14:15 +01:00 committed by Fabio Zadrozny
parent b613ec84a0
commit 70d4f5bcb7

View file

@ -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 --config-subProcess False
```