Skip to content

Commit

Permalink
Merge pull request #460 from wking/q-formatting
Browse files Browse the repository at this point in the history
pkg/asset/store: Use '%q' for formatting quoted strings
  • Loading branch information
openshift-merge-robot authored Oct 13, 2018
2 parents ba2a72e + 7628995 commit e2547ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/asset/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func (s *StoreImpl) fetch(asset Asset, indent string) error {
logrus.Debugf("%sLooking up asset from state file: %s", indent, reflect.TypeOf(asset).String())
ok, err := s.GetStateAsset(asset)
if err != nil {
return errors.Wrapf(err, "failed to unmarshal asset '%s' from state file '%s'", asset.Name(), stateFileName)
return errors.Wrapf(err, "failed to unmarshal asset %q from state file %q", asset.Name(), stateFileName)
}
if ok {
logrus.Debugf("%sAsset found in state file", indent)
Expand Down

0 comments on commit e2547ee

Please sign in to comment.