From b399d0cd1cbc075731e55507827da7766b79cfe7 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Thu, 15 Aug 2019 13:22:03 +0200 Subject: [PATCH] Fix tracing_supported import --- tracetools_launch/tracetools_launch/action.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracetools_launch/tracetools_launch/action.py b/tracetools_launch/tracetools_launch/action.py index e549e3e..9035b06 100644 --- a/tracetools_launch/tracetools_launch/action.py +++ b/tracetools_launch/tracetools_launch/action.py @@ -25,10 +25,10 @@ from launch.actions import SetEnvironmentVariable from launch.event import Event from launch.event_handlers import OnShutdown from launch.launch_context import LaunchContext -from tracetools_trace import tracing_supported from tracetools_trace.tools import lttng from tracetools_trace.tools import names from tracetools_trace.tools import path +from tracetools_trace.tools import tracing_supported class Trace(Action):