From 2250c4b2c3d72f9853080edb599f4dc25e363c4f Mon Sep 17 00:00:00 2001 From: DustInDark Date: Wed, 22 Dec 2021 20:38:21 +0900 Subject: [PATCH] fixed error --- src/afterfact.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/afterfact.rs b/src/afterfact.rs index 48a1d682..a19a01b7 100644 --- a/src/afterfact.rs +++ b/src/afterfact.rs @@ -45,7 +45,7 @@ pub fn after_fact() { let mut displayflag = false; let mut target: Box = - if let Some(csv_path) = configs::CONFIG.read().unwrap().args.value_of("details") { + if let Some(csv_path) = configs::CONFIG.read().unwrap().args.value_of("output") { // ファイル出力する場合 match File::create(csv_path) { Ok(file) => Box::new(BufWriter::new(file)),