From 552770cfe591121ebc8c9684269adb013c03e8d0 Mon Sep 17 00:00:00 2001 From: Daniel Berger <39526272+Bengonator@users.noreply.github.com> Date: Tue, 7 Jun 2022 15:16:46 +0200 Subject: [PATCH] Previously used TRUE from pickle instead of the normal boolean. --- reddit/subreddit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reddit/subreddit.py b/reddit/subreddit.py index a44c2f9..d9c971e 100644 --- a/reddit/subreddit.py +++ b/reddit/subreddit.py @@ -72,7 +72,7 @@ def get_subreddit_threads(): response = input("Is this thread acceptable? [yes/no/exit]: ").strip().lower() if response == "yes" or response == "y": - accept_thread = TRUE + accept_thread = True elif response == "exit": return -1 else: