From 5ae139fde0e4104ec0aff4e737b68d34ab1cf33c Mon Sep 17 00:00:00 2001 From: Jacob Henry Date: Thu, 8 Nov 2018 20:12:49 -0500 Subject: [PATCH] Wait shit fixed it the wrong way lmao --- periodicals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/periodicals.py b/periodicals.py index 570e9c9..651c630 100644 --- a/periodicals.py +++ b/periodicals.py @@ -17,7 +17,7 @@ class ItsTenPM(slack_util.Passive): async def run(self, slack: SlackClient) -> None: while True: # Get 10PM - ten_pm = datetime.now().replace(hour=20, minute=0, second=0) + ten_pm = datetime.now().replace(hour=22, minute=0, second=0) # Find out how long until it, then sleep that long delay = seconds_until(ten_pm)