diff --git a/bot/winston.py b/bot/winston.py index 033b9c1..19b8b29 100644 --- a/bot/winston.py +++ b/bot/winston.py @@ -51,7 +51,7 @@ class Winston: def send_random_tweet(self): """Tweet something random from potential tweets""" - result = False + result = random.choice([True, False]) if result: random_tweet = random.choice(self.potential_tweets) self.bot.update_status(status=random_tweet)