diff options
author | Parker <contact@pkrm.dev> | 2024-11-30 00:22:11 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-11-30 00:22:11 -0600 |
commit | 6597856610a4e54b2348aa9b972868a9575bc87c (patch) | |
tree | 016d41cd70de5d4fcca6df41a1b9413052afc18b | |
parent | c0c78d8693edb26ff7cfce2598619b3a9649d5ca (diff) |
Remove timestamp as default embed footer
-rw-r--r-- | code/utils/config.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/code/utils/config.py b/code/utils/config.py index bcb005a..470d03c 100644 --- a/code/utils/config.py +++ b/code/utils/config.py @@ -297,10 +297,10 @@ def create_embed( if footer: embed.set_footer(text=footer) - else: - embed.set_footer( - text=datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + " UTC" - ) + # else: + # embed.set_footer( + # text=datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + " UTC" + # ) if thumbnail: embed.set_thumbnail(url=thumbnail) |