From e63332f476c50a77b0f92d55e2e8e6bcb1fcab8c Mon Sep 17 00:00:00 2001 From: Martin Pecka Date: Mon, 16 Sep 2024 00:20:34 +0200 Subject: [PATCH] tutorials/06_python_support: Fix tutorial snippet Signed-off-by: Martin Pecka --- tutorials/06_python_support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/06_python_support.md b/tutorials/06_python_support.md index 21b663a8..ca62f4cf 100644 --- a/tutorials/06_python_support.md +++ b/tutorials/06_python_support.md @@ -340,7 +340,7 @@ We can declare the topic remapping option using the following code: # Create a transport node and remap a topic. nodeOpts = NodeOptions() - nodeOpts.add_topic_remap("/foo", "/bar") + nodeOpts.add_topic_remap("/example_stringmsg_topic", "/bar") node = Node(nodeOpts) ```