Commit c3f94a43 authored by Felix Lange's avatar Felix Lange

cmd/utils: remove extra space in fatal error message

parent 4ba78713
......@@ -98,7 +98,7 @@ func initDataDir(Datadir string) {
func exit(err error) {
status := 0
if err != nil {
fmt.Fprintln(os.Stderr, "Fatal: ", err)
fmt.Fprintln(os.Stderr, "Fatal:", err)
status = 1
}
logger.Flush()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment