Skip to content

Commit

Permalink
Fix inspect message
Browse files Browse the repository at this point in the history
  • Loading branch information
nivekuil committed Oct 22, 2016
1 parent af21d1c commit 4be1b86
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,7 @@ Send files to the graveyard (/tmp/.graveyard) instead of unlinking them.")
println!("> {}", line);
}
}
if !prompt_yes(["Send {} to the graveyard?", target]
.concat().as_str()) {
if !prompt_yes(&format!("Send {} to the graveyard?", target)) {
continue;
}
}
Expand Down

0 comments on commit 4be1b86

Please sign in to comment.