From eaba5c2b354f46ad0c70141f1125f7d74ab383f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=AF=E3=81=8A=E3=82=8A=E3=82=93?= Date: Fri, 15 Dec 2017 11:37:17 +0900 Subject: [PATCH] Fix crash when function name is multibyte chracter --- plugin/python/vdebug/ui/vimui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/python/vdebug/ui/vimui.py b/plugin/python/vdebug/ui/vimui.py index 6e9ab927..69935403 100644 --- a/plugin/python/vdebug/ui/vimui.py +++ b/plugin/python/vdebug/ui/vimui.py @@ -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'))