Skip to content

Commit

Permalink
Fix error output formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lucapette committed May 15, 2017
1 parent 40e06c5 commit 85c8735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/fakedata/fakedata.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func ValidateGenerators(keys []string) (err error) {
key := strings.Split(k, ",")[0]

if _, ok := generators[key]; !ok {
errors.WriteString(fmt.Sprintf("Unknown generator: %s.", key))
errors.WriteString(fmt.Sprintf("Unknown generator: %s.\n", key))
}
}

Expand Down

0 comments on commit 85c8735

Please sign in to comment.