From 483170a4e76e2218a9051e2d22ec70513bb9b0ad Mon Sep 17 00:00:00 2001 From: "Brandon Waterloo [MSFT]" <36966225+bwateratmsft@users.noreply.github.com> Date: Mon, 6 Jul 2020 13:13:59 -0400 Subject: [PATCH] Use python3 explicitly (#2130) --- resources/python/launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/python/launcher.py b/resources/python/launcher.py index 324d98a871..4910b5ecad 100644 --- a/resources/python/launcher.py +++ b/resources/python/launcher.py @@ -14,7 +14,7 @@ if adapterHost.isnumeric(): args[0] = 'host.docker.internal:' + adapterHost -dockerExecArgs = ['docker', 'exec', '-d', containerId, 'python', '/debugpy/launcher'] + args +dockerExecArgs = ['docker', 'exec', '-d', containerId, 'python3', '/debugpy/launcher'] + args command = ' '.join(dockerExecArgs)