Skip to content

Commit

Permalink
Merge pull request #829 from puremourning/fix-gadget-auto-install-con…
Browse files Browse the repository at this point in the history
…fig-selection

Fix not starting the correct configuration after installing gadget
  • Loading branch information
mergify[bot] authored Feb 16, 2024
2 parents 98867a9 + f626707 commit 50fe508
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions python3/vimspector/debug_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,8 @@ def Start( self,
self._api_prefix,
False, # Don't leave open
*shlex.split( response ),
then = lambda: self.Start( new_launch_variables ) )
then = lambda: self.Start(
launch_variables = new_launch_variables ) )
return
elif response is None:
return
Expand Down Expand Up @@ -371,7 +372,8 @@ def Start( self,
self._api_prefix,
False, # Don't leave open
*shlex.split( response ),
then = lambda: self.Start( new_launch_variables ) )
then = lambda: self.Start(
launch_variables = new_launch_variables ) )
return
elif response is None:
return
Expand Down

0 comments on commit 50fe508

Please sign in to comment.