Tidy unknwon types and values
This commit is contained in:
parent
434a6f41d4
commit
2440a987b2
1 changed files with 2 additions and 2 deletions
|
|
@ -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', '<unknown type>' ),
|
||||
type_ = variable.variable.get( 'type', '' ),
|
||||
value = variable.variable.get( 'value',
|
||||
'<unknown value>' ) ).split( '\n' ) )
|
||||
'<unknown>' ) ).split( '\n' ) )
|
||||
view.lines[ line ] = variable
|
||||
|
||||
if variable.ShouldDrawDrillDown():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue