We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5427895 commit 3d8f07eCopy full SHA for 3d8f07e
1 file changed
plugin/python/vdebug/ui/vimui.py
@@ -486,10 +486,10 @@ def render(self):
486
string = ""
487
for s in stack:
488
where = s.get('where') if s.get('where') else 'main'
489
- file = vdebug.util.LocalFilePath(s.get('filename'))
+ file = vdebug.util.FilePath(s.get('filename'))
490
line = "[%(num)s] %(where)s @ %(file)s:%(line)s" \
491
%{'num':s.get('level'),'where':where,\
492
- 'file':str(file),'line':s.get('lineno')}
+ 'file':str(file.as_local()),'line':s.get('lineno')}
493
string += line + "\n"
494
return string
495
0 commit comments