We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8322dd commit 269be4fCopy full SHA for 269be4f
src/main.rs
@@ -370,19 +370,15 @@ impl KeeManager {
370
}
371
372
// Offer to add the account
373
- print!(
374
- " Would you like to add account '{hlt_account}' now? (y/N): "
375
- );
+ print!(" Would you like to add account '{hlt_account}' now? (y/N): ");
376
io::stdout().flush()?;
377
378
let mut input = String::new();
379
io::stdin().read_line(&mut input)?;
380
381
if input.trim().to_lowercase() == "y" {
382
if self.add_account(account_name)? {
383
384
- " Would you like to use account '{hlt_account}' now? (y/N): "
385
+ print!(" Would you like to use account '{hlt_account}' now? (y/N): ");
386
387
388
0 commit comments