Skip to content

Commit d063239

Browse files
carlpettmultani
andauthored
Update sops/read_data.go
Co-authored-by: Jonathan Ballet <[email protected]>
1 parent f44957a commit d063239

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sops/read_data.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func readData(content []byte, format string) (map[string]string, string, error)
3333
err = ini.Unmarshal(cleartext, &data)
3434
}
3535
if err != nil {
36-
return nil, "", fmt.Errorf("Error parsing decrypted data: %s", err)
36+
return nil, "", fmt.Errorf("Error parsing decrypted data: %w", err)
3737
}
3838

3939
return flatten(data), string(cleartext), nil

0 commit comments

Comments
 (0)