From 4bd4c23694c096415913b229804fc0297b4dc840 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 17 Mar 2019 11:51:54 -0400 Subject: [PATCH] Fix NameError in Embed.to_dict --- discord/embeds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/embeds.py b/discord/embeds.py index 88123cbcf..7b4ecccb1 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -512,7 +512,7 @@ class Embed: if timestamp.tzinfo: result['timestamp'] = timestamp.astimezone(tz=datetime.timezone.utc).isoformat() else: - result['timestamp'] = timestamp.replace(tzinfo=timezone.utc).isoformat() + result['timestamp'] = timestamp.replace(tzinfo=datetime.timezone.utc).isoformat() # add in the non raw attribute ones if self.type: