Skip to content

Commit 0dc331a

Browse files
committed
python-example: change module name
1 parent 68e8428 commit 0dc331a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"temporal.replayerEntrypoint": "vscode-replay.py",
33
"temporal.debugLanguage": "python",
4-
"temporal.debugger.backgroundProcess.command": "tdlv",
5-
"temporal.debugger.backgroundProcess.args": ["--lang=python"]
4+
"temporal.debugger.backgroundProcess.command": "../../tdlv.build",
5+
"temporal.debugger.backgroundProcess.args": ["--lang=python", "--entrypoint=vscode-replay.py"]
66
}

example/python/vscode-replay.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
sys.path.insert(0, project_root)
2020
sys.path.insert(0, replayer_adapter_path)
2121

22-
from replayer import (
22+
from replayer_adapter_python.replayer import (
2323
ReplayMode, ReplayOptions, set_replay_mode,
2424
set_breakpoints, replay
2525
)

0 commit comments

Comments
 (0)