Wait shit fixed it the wrong way lmao

This commit is contained in:
Jacob Henry 2018-11-08 20:12:49 -05:00
parent 5ecd3ab8b8
commit 5ae139fde0
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ class ItsTenPM(slack_util.Passive):
async def run(self, slack: SlackClient) -> None: async def run(self, slack: SlackClient) -> None:
while True: while True:
# Get 10PM # 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 # Find out how long until it, then sleep that long
delay = seconds_until(ten_pm) delay = seconds_until(ten_pm)