Remove stray println
This commit is contained in:
parent
31f8daa73b
commit
aeda8d8b91
|
@ -362,7 +362,6 @@ fn main() {
|
||||||
fn remove_directory_contents(ledger_path: &Path) -> Result<(), io::Error> {
|
fn remove_directory_contents(ledger_path: &Path) -> Result<(), io::Error> {
|
||||||
for entry in fs::read_dir(&ledger_path)? {
|
for entry in fs::read_dir(&ledger_path)? {
|
||||||
let entry = entry?;
|
let entry = entry?;
|
||||||
println!("emove {}:", entry.path().display());
|
|
||||||
if entry.metadata()?.is_file() {
|
if entry.metadata()?.is_file() {
|
||||||
fs::remove_file(&entry.path())?
|
fs::remove_file(&entry.path())?
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue