Skip to content

Commit

Permalink
Use python3 explicitly (microsoft#2130)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwateratmsft authored and Dmarch28 committed Mar 4, 2021
1 parent 1ff5c20 commit 483170a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/python/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 483170a

Please sign in to comment.