Skip to content

Commit

Permalink
correct format string
Browse files Browse the repository at this point in the history
Signed-off-by: yanxuean <[email protected]>
  • Loading branch information
yanxuean committed Jul 16, 2018
1 parent 1eab90b commit a968c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/imagetranslation/translator.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func (t *imageNameTranslator) Translate(name string) image.Endpoint {
}
re, err := regexp.Compile(r.Regex)
if err != nil {
glog.V(2).Infof("invalid regexp in image translation config: ", r.Regex)
glog.V(2).Infof("invalid regexp in image translation config: %q", r.Regex)
continue
}
submatchIndexes := re.FindStringSubmatchIndex(unprefixedName)
Expand Down

0 comments on commit a968c66

Please sign in to comment.