From 1131418ac5c556c5d0bd1ff652a49360ba8ac9b1 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Mon, 18 May 2020 20:54:30 -0400 Subject: [PATCH] Fix use of deprecated 'node_executable' in example launch file Signed-off-by: Christophe Bedard --- tracetools_launch/launch/example.launch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tracetools_launch/launch/example.launch.py b/tracetools_launch/launch/example.launch.py index 1a5e9ff..0aa3f90 100644 --- a/tracetools_launch/launch/example.launch.py +++ b/tracetools_launch/launch/example.launch.py @@ -26,12 +26,12 @@ def generate_launch_description(): ), Node( package='tracetools_test', - node_executable='test_ping', + executable='test_ping', output='screen', ), Node( package='tracetools_test', - node_executable='test_pong', + executable='test_pong', output='screen', ), ])