Skip to content

Commit d976e03

Browse files
committed
Update resolution.py
1 parent ad0eecd commit d976e03

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

cppython/plugins/cmake/resolution.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ def _resolve_cmake_binary(configured_path: Path | None) -> Path | None:
3535
if env_path.exists():
3636
return env_path
3737
logger.warning(
38-
'CMAKE_BINARY environment variable points to non-existent path: %s. '
39-
'Falling back to PATH lookup.',
38+
'CMAKE_BINARY environment variable points to non-existent path: %s. Falling back to PATH lookup.',
4039
env_binary,
4140
)
4241

@@ -45,8 +44,7 @@ def _resolve_cmake_binary(configured_path: Path | None) -> Path | None:
4544
if configured_path.exists():
4645
return configured_path
4746
logger.warning(
48-
'Configured cmake_binary path does not exist: %s. '
49-
'Falling back to PATH lookup.',
47+
'Configured cmake_binary path does not exist: %s. Falling back to PATH lookup.',
5048
configured_path,
5149
)
5250

0 commit comments

Comments
 (0)