Skip to content

Commit d3d9f5f

Browse files
committed
fix error message
1 parent 7156b57 commit d3d9f5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/private/local_runtime_repo.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def _find_python_exe_from_target(rctx):
292292
resolved_path = None
293293
describe_failure = lambda: (
294294
"Target '{}' could not be resolved to a valid path. " +
295-
"Attempted paths: {paths}".format("\n".join(attempted_paths))
295+
"Attempted paths: {paths}".format("\n".join([str(p) for p in attempted_paths]))
296296
)
297297
return None, describe_failure
298298

0 commit comments

Comments
 (0)