commit | 0bda815c2edc95ddbbe1bfd0dc2cb237f3bcc860 | [log] [tgz] |
---|---|---|
author | Liz Kammer <eakammer@google.com> | Fri Jan 14 14:16:40 2022 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Jan 14 14:16:40 2022 +0000 |
tree | 72ee5e87871cad53eaee7f1e0e353a80060af71c | |
parent | 30754b88f21874f6291feb9961cd2ab513a8b965 [diff] | |
parent | 07e106ffa1943cea5bc95b3a8495b74376ddae7b [diff] |
Merge "Change format string %s -> %#v"
diff --git a/bazel/properties.go b/bazel/properties.go index 870d293..1300a53 100644 --- a/bazel/properties.go +++ b/bazel/properties.go
@@ -492,7 +492,7 @@ // Verify post-condition; this should never fail, provided no additional // axes are introduced. if len(ba.ConfigurableValues) > 1 { - panic(fmt.Errorf("error in collapsing attribute: %s", ba)) + panic(fmt.Errorf("error in collapsing attribute: %#v", ba)) } } return nil