From d2245ece030a69a58fc11b3d337ae2cadc952be0 Mon Sep 17 00:00:00 2001 From: muskit <15199219+muskit@users.noreply.github.com> Date: Thu, 29 Sep 2022 09:28:37 +0100 Subject: [PATCH] fix print from prev commit --- src/catchup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/catchup.py b/src/catchup.py index accc341..745a6ac 100644 --- a/src/catchup.py +++ b/src/catchup.py @@ -98,7 +98,7 @@ async def process_queue() -> bool: queue = ttq.TalentTweetQueue.instance queued_ttweets_count = len(queue.ttweets_dict) - if len(queued_ttweets_count) == 0: return ttweets_posted + if queued_ttweets_count == 0: return ttweets_posted if PROGRAM_ARGS.announce_catchup: TwAPI.instance.post_tweet(text=f'Starting to catch up through {queued_ttweets_count} logged tweets.')