From 59d7a1e78faa9f8979326d7210b017f7a637b884 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Tue, 31 Dec 2019 21:44:14 -0500 Subject: [PATCH] Update README after change load_file() to be able to convert trace --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5716d86..e182a72 100644 --- a/README.md +++ b/README.md @@ -44,8 +44,8 @@ from tracetools_analysis import loading from tracetools_analysis import processor from tracetools_analysis import utils -# Load converted trace file -events = loading.load_file('/path/to/converted/file') +# Load trace directory or converted trace file +events = loading.load_file('/path/to/trace/or/converted/file') # Process ros2_handler = processor.Ros2Handler()