From aa8dfd71b69053bbeb322739f881b069d98cc3de Mon Sep 17 00:00:00 2001 From: thomasdevl <91684310+thomasdevl@users.noreply.github.com> Date: Fri, 10 Jun 2022 19:54:17 +0200 Subject: [PATCH] Message of changing thread --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index e1b770a..6ddc1c4 100644 --- a/main.py +++ b/main.py @@ -97,7 +97,9 @@ def get_thread(): u_inp = input("Is this a good threads?(Y/N/Stop) :") if u_inp.upper() == 'STOP': exit() elif u_inp.upper() == 'Y': return reddit_object - else: get_thread() + else: + console.log(f"[red]Searching for a new thread...") + get_thread() if configured: reddit_object = get_thread()