Skip to content

Commit ae0609c

Browse files
Merge pull request #314 from haoling/master
Fix crash when function name is multibyte chracter
2 parents d825fbd + eaba5c2 commit ae0609c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugin/python/vdebug/ui/vimui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ def render(self):
532532
string = ""
533533
for s in stack:
534534
if s.get('where'):
535-
where = s.get('where')
535+
where = s.get('where').encode('latin1')
536536
else:
537537
where = 'main'
538538
file = vdebug.util.FilePath(s.get('filename'))

0 commit comments

Comments
 (0)