Skip to content

Commit

Permalink
add fix to strip the single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
saikishor committed Dec 20, 2024
1 parent 8b99e0b commit cd4c352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller_manager/controller_manager/spawner.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def main(args=None):
controller_manager_name,
controller_name,
"node_options_args",
controller_ros_args.split(),
controller_ros_args.strip("'").split(),
):
return 1
if param_files:
Expand Down

0 comments on commit cd4c352

Please sign in to comment.