Yet more hacking. This sort of makes it work for rust

This commit is contained in:
Ben Jackson 2018-05-29 02:15:18 +01:00
commit 65e2a50d28
6 changed files with 66 additions and 9 deletions

View file

@ -182,7 +182,7 @@ class StackTraceView( object ):
stackFrames = thread[ '_frames' ]
for frame in stackFrames:
if frame[ 'source' ]:
if frame.get( 'source' ):
source = frame[ 'source' ]
else:
source = { 'name': '<unknown>' }