Use "password:" instead of "password>" prompt

Fixes #410
This commit is contained in:
Klaus Post 2016-03-29 08:32:18 +02:00 committed by Nick Craig-Wood
parent 70496c15e1
commit 6c0c9abd57

View File

@ -451,7 +451,7 @@ func getPassword(q string) {
}
for {
fmt.Println(q)
fmt.Print("password>")
fmt.Print("password:")
err := setPassword(ReadPassword())
if err == nil {
return