Skip to content

Commit 7b7226e

Browse files
committed
[bugfix] Fix error formatting
1 parent 97e0be5 commit 7b7226e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/app/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ func LoadControllerConfig(fileName string) (config Controller, err error) {
112112

113113
err = yaml.Unmarshal(b, &config)
114114
if err != nil {
115-
err = errors.Wrapf(err, "Could not unmarshal config file %v. %v", fileName)
115+
err = errors.Wrapf(err, "Could not unmarshal config file %v", fileName)
116116
}
117117

118118
return

0 commit comments

Comments
 (0)