good morning!!!!

Skip to content
Snippets Groups Projects
Commit c3f94a43 authored by Felix Lange's avatar Felix Lange
Browse files

cmd/utils: remove extra space in fatal error message

parent 4ba78713
No related branches found
No related tags found
No related merge requests found
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment