From dd2edfd204b51c8ae9c27b2cb4856b7354055624 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Sun, 1 Jan 2023 03:12:57 +0200 Subject: [PATCH] Update octosuite.py --- octosuite/octosuite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octosuite/octosuite.py b/octosuite/octosuite.py index 0ea54da..74abb0c 100644 --- a/octosuite/octosuite.py +++ b/octosuite/octosuite.py @@ -164,7 +164,7 @@ def delete_log(): # Clear logs def clear_logs(): - clear_logs_prompt = Confirm.ask(f"{PROMPT} This will clear all {len(os.listdir('output'))} log files, continue?") + clear_logs_prompt = Confirm.ask(f"{PROMPT} This will clear all {len(os.listdir('output'))} log files and close the current session, continue?") if clear_logs_prompt: shutil.rmtree('.logs', ignore_errors=True) xprint(f"{INFO} .log files cleared successfully!")