Fix python debugger again

This commit is contained in:
Ben Jackson 2018-05-28 22:22:00 +01:00
commit ba0c11392d
2 changed files with 3 additions and 1 deletions

View file

@ -400,6 +400,8 @@ class DebugSession( object ):
} )
def _UpdateBreakpoints( self, source, message ):
if 'body' not in message:
return
self._codeView.AddBreakpoints( source, message[ 'body' ][ 'breakpoints' ] )
self._codeView.ShowBreakpoints()