Skip to content

Commit 74b1575

Browse files
authored
fix: string + label concatenation error (#1764)
1 parent f452324 commit 74b1575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

protoc/private/toolchain_impl.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ def protoc_executable(ctx):
4545

4646
toolchain = ctx.toolchains[PROTOC_TOOLCHAIN_TYPE]
4747
if not toolchain:
48-
fail("Couldn't resolve protocol compiler for " + PROTOC_TOOLCHAIN_TYPE)
48+
fail("Couldn't resolve protocol compiler for " + str(PROTOC_TOOLCHAIN_TYPE))
4949
return toolchain.proto.proto_compiler.executable

0 commit comments

Comments
 (0)