mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
cmd/utils: remove extra space in fatal error message
This commit is contained in:
parent
4ba7871374
commit
c3f94a4341
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue