Fixed what I assume was a copy-pasting error

This commit is contained in:
Raphaël Thériault 2019-10-27 18:52:33 -04:00 committed by GitHub
parent c2ab9514c3
commit 39c0d101c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ pub fn init() -> Config {
println!("Are you sure you want to leave an empty password? This will disable authentication: [y/N]: ");
let mut answer = String::new();
stdin.read_line(&mut answer).unwrap_or_else(|e| {
eprintln!("Can't read password: {}", e);
eprintln!("Can't read answer: {}", e);
process::exit(1);
});