Skip to content

Commit c75ccf4

Browse files
committed
fixup typo
Signed-off-by: William Woodall <[email protected]>
1 parent d469612 commit c75ccf4

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
@@ -759,7 +759,7 @@ def execute(self, context: LaunchContext) -> Optional[List[LaunchDescriptionEnti
759759
expanded_cmd = []
760760
assert self.__process_event_args is not None
761761
for token in self.__process_event_args['cmd']:
762-
expanded_cmd.extend(shlex.split(token), posix=g_is_windows)
762+
expanded_cmd.extend(shlex.split(token, posix=g_is_windows))
763763
# Also update self.__process_event_args['cmd'] so it reflects the splitting.
764764
self.__process_event_args['cmd'] = expanded_cmd
765765
context.asyncio_loop.create_task(self.__execute_process(context))

0 commit comments

Comments
 (0)