Improve and add more usage of discord timestamps (#5241)

* Improve and add more usage of discord timestamps

* How did that whitespace get there?
This commit is contained in:
jack1142
2021-09-04 09:14:05 +02:00
committed by GitHub
parent 4366af6f6c
commit a0a433b13d
4 changed files with 5 additions and 5 deletions

View File

@@ -527,7 +527,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
if duration:
duration_str = humanize_timedelta(timedelta=duration)
until = datetime.now(timezone.utc) + duration
until_str = until.strftime("%Y-%m-%d %H:%M:%S UTC")
until_str = f"<t:{int(until.timestamp())}>"
if moderator is None:
moderator_str = _("Unknown")