mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-19 14:29:27 +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) {
|
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()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue