diff --git a/python3/vimspector/variables.py b/python3/vimspector/variables.py index eaed8bb..f6df06c 100644 --- a/python3/vimspector/variables.py +++ b/python3/vimspector/variables.py @@ -359,9 +359,9 @@ class VariablesView( object ): icon = '+' if ( variable.IsExpandable() and not variable.IsExpanded() ) else '-', name = variable.variable[ 'name' ], - type_ = variable.variable.get( 'type', '' ), + type_ = variable.variable.get( 'type', '' ), value = variable.variable.get( 'value', - '' ) ).split( '\n' ) ) + '' ) ).split( '\n' ) ) view.lines[ line ] = variable if variable.ShouldDrawDrillDown():