From 1239e88d0521d5f4d2251629f4be2c2650619b9f Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 13 Mar 2017 17:47:46 -0400 Subject: [PATCH] Handle aware datetimes in embeds. --- discord/embeds.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/discord/embeds.py b/discord/embeds.py index 9d3d604ea..30620498e 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -74,7 +74,7 @@ class Embed: url: str The URL of the embed. timestamp: `datetime.datetime` - The timestamp of the embed content. + The timestamp of the embed content. This could be a naive or aware datetime. colour: :class:`Colour` or int The colour code of the embed. Aliased to ``color`` as well. Empty @@ -457,7 +457,14 @@ class Embed: pass else: if timestamp: - result['timestamp'] = timestamp.isoformat() + 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') + # add in the non raw attribute ones if self.type: