From 03616b91db4e41eef76101d66e9017670ddba753 Mon Sep 17 00:00:00 2001 From: Michael H Date: Sun, 17 Mar 2019 09:15:10 -0400 Subject: [PATCH] Fix embed to_dict timestamp handling for python 3.5 resolves #1992 --- discord/embeds.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/discord/embeds.py b/discord/embeds.py index 5dcc92a82..88123cbcf 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -509,7 +509,10 @@ class Embed: pass else: if timestamp: - result['timestamp'] = timestamp.astimezone(tz=datetime.timezone.utc).isoformat() + if timestamp.tzinfo: + result['timestamp'] = timestamp.astimezone(tz=datetime.timezone.utc).isoformat() + else: + result['timestamp'] = timestamp.replace(tzinfo=timezone.utc).isoformat() # add in the non raw attribute ones if self.type: