From 4389e22ce9ca383b955fc454b6a5183747fe09d9 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Tue, 25 Jun 2019 16:22:53 +0200 Subject: [PATCH] Rename trace action module to 'action' --- tracetools_launch/launch/example.launch.py | 2 +- tracetools_launch/tracetools_launch/{trace.py => action.py} | 0 tracetools_test/tracetools_test/utils.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename tracetools_launch/tracetools_launch/{trace.py => action.py} (100%) diff --git a/tracetools_launch/launch/example.launch.py b/tracetools_launch/launch/example.launch.py index 325daa3..41a724b 100644 --- a/tracetools_launch/launch/example.launch.py +++ b/tracetools_launch/launch/example.launch.py @@ -16,7 +16,7 @@ from launch import LaunchDescription from launch_ros.actions import Node -from tracetools_launch.trace import Trace +from tracetools_launch.action import Trace def generate_launch_description(): diff --git a/tracetools_launch/tracetools_launch/trace.py b/tracetools_launch/tracetools_launch/action.py similarity index 100% rename from tracetools_launch/tracetools_launch/trace.py rename to tracetools_launch/tracetools_launch/action.py diff --git a/tracetools_test/tracetools_test/utils.py b/tracetools_test/tracetools_test/utils.py index a51023b..3a976de 100644 --- a/tracetools_test/tracetools_test/utils.py +++ b/tracetools_test/tracetools_test/utils.py @@ -24,7 +24,7 @@ from launch import LaunchDescription from launch import LaunchService from launch_ros import get_default_launch_description from launch_ros.actions import Node -from tracetools_launch.trace import Trace +from tracetools_launch.action import Trace from tracetools_read.utils import DictEvent from tracetools_read.utils import get_event_name