Skip to content

Commit 9fa9508

Browse files
Merge pull request #1100 from Yamato-Security/remove-extra-colon
remove extra colon in logon-summary
2 parents f9be932 + f0c9444 commit 9fa9508

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ impl App {
327327
&& utils::check_file_expect_not_exist(
328328
Path::new(output_file.as_str()),
329329
format!(
330-
" The files with a base name of {} already exist. Please specify a different base filename.\n",
330+
" The files with a base name of {} already exist. Please specify a different base filename or add the -C, --clobber option to overwrite.\n",
331331
path.as_os_str().to_str().unwrap()
332332
),
333333
)
@@ -341,10 +341,10 @@ impl App {
341341
for target_path in target_output_path.iter() {
342342
let mut msg = "";
343343
if target_path.ends_with("-successful.csv") {
344-
msg = "Successful logon results:"
344+
msg = "Successful logon results"
345345
}
346346
if target_path.ends_with("-failed.csv") {
347-
msg = "Failed logon results:"
347+
msg = "Failed logon results"
348348
}
349349
output_saved_file(&Some(Path::new(target_path).to_path_buf()), msg);
350350
}

0 commit comments

Comments
 (0)