Skip to content

Commit

Permalink
Merge pull request puremourning#586 from Aster89/master
Browse files Browse the repository at this point in the history
Fix line formatting of error message
  • Loading branch information
mergify[bot] authored Apr 30, 2022
2 parents 4c693f3 + ef6719e commit 1ed3533
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions python3/vimspector/debug_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -1515,11 +1515,8 @@ def _Launch( self ):
def failure_handler( reason, msg ):
text = [
'Launch Failed',
'',
reason,
'',
'Use :VimspectorReset to close'
]
'' ] + reason.splitlines() + [
'', 'Use :VimspectorReset to close' ]
self._logger.info( "Launch failed: %s", '\n'.join( text ) )
self._splash_screen = utils.DisplaySplash( self._api_prefix,
self._splash_screen,
Expand Down

0 comments on commit 1ed3533

Please sign in to comment.