cmd/utils: remove extra space in fatal error message

This commit is contained in:
Felix Lange 2015-03-10 15:42:25 +01:00
parent 4ba7871374
commit c3f94a4341
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ func initDataDir(Datadir string) {
func exit(err error) { func exit(err error) {
status := 0 status := 0
if err != nil { if err != nil {
fmt.Fprintln(os.Stderr, "Fatal: ", err) fmt.Fprintln(os.Stderr, "Fatal:", err)
status = 1 status = 1
} }
logger.Flush() logger.Flush()