diff options
| author | 2023-07-14 16:24:05 +0000 | |
|---|---|---|
| committer | 2023-07-14 16:24:05 +0000 | |
| commit | e61a0817f6fb0262ecc59f6b4e7bf486c7a3f12d (patch) | |
| tree | f6d784f4a8cea6bfe4e02c174b4e16134b50c84a | |
| parent | 1181ca2be367d8aae646fcbd07f2bab7cacb1239 (diff) | |
| parent | 5b18c0ca2743a1c11a4bcf76eba015d2b24fc394 (diff) | |
Merge "Add missing formatting directive" into main
| -rw-r--r-- | android/bazel.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/bazel.go b/android/bazel.go index 1bfbdec00..0d2c7776f 100644 --- a/android/bazel.go +++ b/android/bazel.go @@ -255,7 +255,7 @@ func (b *BazelModuleBase) GetBazelLabel(ctx BazelConversionPathContext, module b if b.ShouldConvertWithBp2build(ctx) { return bp2buildModuleLabel(ctx, module) } - panic(fmt.Errorf("requested non-existent label for module ", module.Name())) + panic(fmt.Errorf("requested non-existent label for module %s", module.Name())) } type Bp2BuildConversionAllowlist struct { |