Skip to content

Commit

Permalink
Merge pull request #314 from haoling/master
Browse files Browse the repository at this point in the history
Fix crash when function name is multibyte chracter
  • Loading branch information
BlackIkeEagle authored Feb 10, 2018
2 parents d825fbd + eaba5c2 commit ae0609c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/python/vdebug/ui/vimui.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def render(self):
string = ""
for s in stack:
if s.get('where'):
where = s.get('where')
where = s.get('where').encode('latin1')
else:
where = 'main'
file = vdebug.util.FilePath(s.get('filename'))
Expand Down

0 comments on commit ae0609c

Please sign in to comment.