From e8729357083af6c4f6044a8bc3f2cdbadca5e917 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Fri, 7 Oct 2016 15:40:29 -0500 Subject: [PATCH] Corrected syntax error --- cogs/owner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/owner.py b/cogs/owner.py index f0ce2e4..ee361d0 100644 --- a/cogs/owner.py +++ b/cogs/owner.py @@ -29,7 +29,7 @@ class Owner: entry = {'motd': message, 'date': date} # Try to add this, if there's an entry for that date, lets update it to make sure only one motd is sent a day # I should be managing this myself, more than one should not be sent in a day - if false await config.add_content('motd', entry, r_filter): + if await config.add_content('motd', entry, r_filter): await config.update_content('motd', entry, r_filter) await self.bot.say("New motd update for {}!".format(date))