We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b97dc1 commit b1387c7Copy full SHA for b1387c7
python/private/local_runtime_repo.bzl
@@ -290,8 +290,11 @@ def _find_python_exe_from_target(rctx):
290
attempted_paths.append(path)
291
292
describe_failure = lambda: (
293
- "Target '{}' could not be resolved to a valid path. " +
294
- "Attempted paths: {paths}".format("\n".join([str(p) for p in attempted_paths]))
+ "Target '{target}' could not be resolved to a valid path. " +
+ "Attempted paths: {paths}".format(
295
+ target = rctx.attr.interpreter_target,
296
+ paths = "\n".join([str(p) for p in attempted_paths]),
297
+ )
298
)
299
return None, describe_failure
300
0 commit comments