Skip to content

Commit 11acc42

Browse files
committed
remove extra new line char
1 parent 84835f1 commit 11acc42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/read.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func ReadPasswordGenerate(prompt string) ([]byte, error) {
7878
return nil, errors.WithStack(err)
7979
}
8080
pass = []byte(_pass)
81-
fmt.Fprintf(os.Stderr, "\n\npassword: %s\n\n", pass)
81+
fmt.Fprintf(os.Stderr, "\npassword: %s\n\n", pass)
8282
}
8383
return pass, errors.Wrap(err, "error reading password")
8484
}

0 commit comments

Comments
 (0)