Skip to content

Commit ecda4a3

Browse files
committed
fix #543
1 parent fabba0a commit ecda4a3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pythonFiles/PythonTools/testlauncher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
def main():
22
import os
33
import sys
4+
from ptvsd.visualstudio_py_debugger import DONT_DEBUG, DEBUG_ENTRYPOINTS, get_code
5+
from ptvsd.attach_server import DEFAULT_PORT, enable_attach, wait_for_attach
46

57
sys.path[0] = os.getcwd()
68
os.chdir(sys.argv[1])
79
secret = sys.argv[2]
810
port = int(sys.argv[3])
911
testFx = sys.argv[4]
1012
args = sys.argv[5:]
11-
from ptvsd.visualstudio_py_debugger import DONT_DEBUG, DEBUG_ENTRYPOINTS, get_code
12-
from ptvsd.attach_server import DEFAULT_PORT, enable_attach, wait_for_attach
1313

1414
DONT_DEBUG.append(os.path.normcase(__file__))
1515
DEBUG_ENTRYPOINTS.add(get_code(main))

0 commit comments

Comments
 (0)