Previously used TRUE from pickle instead of the normal boolean.

pull/364/head
Daniel Berger 3 years ago
parent 30abf51446
commit 552770cfe5

@ -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:

Loading…
Cancel
Save