Skip to content

Commit 022dcbb

Browse files
sunjayBhatiawrowe
andauthored
Fix print format args (#904)
Taken suggestion from: #837 (comment) Signed-off-by: William A Rowe Jr <[email protected]> Co-authored-by: Sunjay Bhatia <[email protected]> Co-authored-by: William A Rowe Jr <[email protected]>
1 parent 79fdeca commit 022dcbb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

rules/rbe_repo/checked_in.bzl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,13 @@ def validateUseOfCheckedInConfigs(
196196
env = env,
197197
name = name,
198198
):
199-
print(("%s not using checked in configs; '%s' was picked/selected " +
200-
"as a candidate matching config but it does not match " +
201-
"the 'env = %s', 'config_repos = %s', " +
199+
print(("%s not using checked in configs; '%s' was picked/selected as a candidate " +
200+
"matching config for Bazel %s from whose list of compatible configs are %s " +
201+
"but it does not match the 'env = %s', 'config_repos = %s', " +
202202
"and/or 'create_cc_configs = %s' passed as attrs") %
203203
(
204204
name,
205+
config,
205206
bazel_version,
206207
str(bazel_compat_configs),
207208
env,

0 commit comments

Comments
 (0)