Remove stray println

This commit is contained in:
Michael Vines 2020-12-15 16:44:31 -08:00
parent 31f8daa73b
commit aeda8d8b91
1 changed files with 0 additions and 1 deletions

View File

@ -362,7 +362,6 @@ fn main() {
fn remove_directory_contents(ledger_path: &Path) -> Result<(), io::Error> {
for entry in fs::read_dir(&ledger_path)? {
let entry = entry?;
println!("emove {}:", entry.path().display());
if entry.metadata()?.is_file() {
fs::remove_file(&entry.path())?
} else {