fix paths returned by python debugger

pull/282/merge
nightwing 2017-05-12 16:57:50 +04:00
rodzic 79b4e14d19
commit 7532977df0
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -186,7 +186,7 @@ define(function(require, exports, module) {
column: 0,
id: frame.id,
line: parseInt(frame.line_number, 10) - 1, // IKPdb lines are 1 based
path: util.normalizePath(frame.file_path),
path: util.normalizePath("/" + frame.file_path),
sourceId: frame.file_path,
thread: thread_id,
istop: (i === 0),