Skip to content

Commit dd0b5c8

Browse files
Roger Strainmlanting
authored andcommitted
Fix order of parameters
Distro A; OPSEC #4584 Signed-off-by: Roger Strain <[email protected]>
1 parent 937eb57 commit dd0b5c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

launch/launch/actions/execute_local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ async def __execute_process(self, context: LaunchContext) -> None:
578578

579579
def prepare(self, context: LaunchContext):
580580
"""Prepare the action for execution."""
581-
self.__process_description.prepare(self, context)
581+
self.__process_description.prepare(context, self)
582582

583583
# store packed kwargs for all ProcessEvent based events
584584
self.__process_event_args = {

0 commit comments

Comments
 (0)