Skip to content

Commit

Permalink
Fix formatting warning message (#768)
Browse files Browse the repository at this point in the history
  • Loading branch information
furushchev authored Dec 19, 2023
1 parent 9b3811b commit 86632fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions catkin_tools/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -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\
Expand Down

0 comments on commit 86632fe

Please sign in to comment.