Skip to content

Commit 04b80f8

Browse files
committed
fix error formatting
1 parent 1e7615f commit 04b80f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func (s *ListService) gcpStorage() ([]match.MatchInfo, error) {
4242
ctx := context.Background()
4343
client, err := storage.NewClient(ctx)
4444
if err != nil {
45-
return nil, fmt.Errorf("failed to create GCP storage client", err)
45+
return nil, fmt.Errorf("failed to create GCP storage client: %w", err)
4646
}
4747
bucket := client.Bucket("2d-sparko-demostorage")
4848

0 commit comments

Comments
 (0)