Merge pull request #454 from olevole/master

log: fix typo in Fatalf func
This commit is contained in:
Josh Baker 2019-06-04 08:39:48 -07:00 committed by GitHub
commit ac3bac7d16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ func Print(format string, args ...interface{}) {
// Fatalf ...
func Fatalf(format string, args ...interface{}) {
log(1, "FATA", "x1b[31m", true, format, args...)
log(1, "FATA", "\x1b[31m", true, format, args...)
os.Exit(1)
}