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)),