From 86632fef204606716b7089d7a5e18a63e9c42d59 Mon Sep 17 00:00:00 2001 From: Yuki Furuta Date: Tue, 19 Dec 2023 00:35:41 -0800 Subject: [PATCH] Fix formatting warning message (#768) --- catkin_tools/context.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/catkin_tools/context.py b/catkin_tools/context.py index f0350632..2fb4d1bf 100644 --- a/catkin_tools/context.py +++ b/catkin_tools/context.py @@ -503,9 +503,9 @@ def load_env(self): "should call @{yf}`catkin clean`@| to remove all " "references to the previous CMAKE_PREFIX_PATH.\\n\\n" "@{cf}Cached CMAKE_PREFIX_PATH:@|\\n\\t@{yf}{}@|\\n" - "@{cf}Other workspace to extend:@|\\n\\t@{yf}{_Context__extend_path}@|\\n" + "@{cf}Other workspace to extend:@|\\n\\t@{yf}{}@|\\n" "@{cf}Other workspace's CMAKE_PREFIX_PATH:@|\\n\\t@{yf}{}@|").format( - self.cached_cmake_prefix_path, self.env_cmake_prefix_path)] + self.cached_cmake_prefix_path, self.extend_path, self.env_cmake_prefix_path)] elif self.env_cmake_prefix_path and\ self.cached_cmake_prefix_path and\