Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Lissé committed Apr 23, 2019
1 parent d6023c2 commit 7857674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func createConfigFileIfNonExistent(ffp string) {
if _, err := os.Stat(ffp); os.IsNotExist(err) {
_, err := os.Create(ffp)
if err != nil {
panic(fmt.Sprintf("config file does not exists and wasn't able to create it: %s\n", err))
panic(fmt.Sprintf("could not create config file: %s\n", err))
}
}
}
Expand Down

0 comments on commit 7857674

Please sign in to comment.