From 1d3bb1f510fd8be5c686d129ff48110b1dcaf8bb Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 9 Jul 2017 15:52:50 -0400 Subject: [PATCH] Simplify embed timestamp code due to it being fixed Discord side. See https://github.com/hammerandchisel/discord-api-docs/issues/291 --- discord/embeds.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/discord/embeds.py b/discord/embeds.py index bc937b50b..2e18687b2 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -460,14 +460,7 @@ class Embed: pass else: if timestamp: - try: - aware = timestamp.astimezone(datetime.timezone.utc) - except ValueError: - # naive date time - result['timestamp'] = timestamp.isoformat() - else: - result['timestamp'] = aware.isoformat().replace('+00:00', 'Z') - + result['timestamp'] = timestamp.isoformat() # add in the non raw attribute ones if self.type: