From 4e455ff5952b5f5b433d03ced4af71fa99960cb4 Mon Sep 17 00:00:00 2001 From: Edd Robinson Date: Wed, 8 Jul 2020 18:55:03 +0100 Subject: [PATCH] refactor: PR feedback Co-authored-by: Andrew Lamb --- src/commands/convert.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/convert.rs b/src/commands/convert.rs index ac952c0716..b7fc73defa 100644 --- a/src/commands/convert.rs +++ b/src/commands/convert.rs @@ -110,7 +110,7 @@ pub fn convert( compression_level: CompressionLevel, ) -> Result<()> { info!("convert starting"); - debug!("Reading from input file {}", input_path); + debug!("Reading from input path {}", input_path); if is_directory(input_path) { let files: Vec<_> = fs::read_dir(input_path)