Browse Source

Simplify embed timestamp code due to it being fixed Discord side.

See https://github.com/hammerandchisel/discord-api-docs/issues/291
pull/640/head
Rapptz 8 years ago
parent
commit
1d3bb1f510
  1. 7
      discord/embeds.py

7
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')
# add in the non raw attribute ones
if self.type:

Loading…
Cancel
Save