From 0f25577f57213e7bff2d5daf75e39ea8096e365c Mon Sep 17 00:00:00 2001 From: Zomatree <39768508+zomatree@users.noreply.github.com> Date: Thu, 9 Jul 2020 17:48:40 +0100 Subject: [PATCH] changed datetime.now to utcnow --- mallard/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mallard/client.py b/mallard/client.py index 82accde..58fdf45 100644 --- a/mallard/client.py +++ b/mallard/client.py @@ -192,7 +192,7 @@ async def search(self, query, message): # pylint: disable=assigning-non-slot embed = discord.Embed(type="rich") - embed.timestamp = datetime.now() + embed.timestamp = datetime.utcnow() embed.set_footer( text=f"Requested by {message.author.display_name}", icon_url=message.author.avatar_url,