Browse Source

Fix Embed.to_dict to work with TZ aware datetime objects.

pull/1987/head
Rapptz 6 years ago
parent
commit
70c5f1723f
  1. 2
      discord/embeds.py

2
discord/embeds.py

@ -509,7 +509,7 @@ class Embed:
pass pass
else: else:
if timestamp: if timestamp:
result['timestamp'] = timestamp.isoformat() result['timestamp'] = timestamp.astimezone(tz=datetime.timezone.utc).isoformat()
# add in the non raw attribute ones # add in the non raw attribute ones
if self.type: if self.type:

Loading…
Cancel
Save