From 9d44a0a2ca2bf184f03b07fdd5c3fff9f5487d60 Mon Sep 17 00:00:00 2001 From: deflax Date: Thu, 6 Feb 2025 14:17:27 +0000 Subject: [PATCH] Change the time command string --- src/discordbot/discordbot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/discordbot/discordbot.py b/src/discordbot/discordbot.py index 65c8b41..10633a4 100644 --- a/src/discordbot/discordbot.py +++ b/src/discordbot/discordbot.py @@ -60,9 +60,9 @@ async def hello_error(ctx, error): if isinstance(error, CheckFailure): await ctx.channel.send('do I know you?') -@bot.command(name='time', help='Show current time') +@bot.command(name='time', help='Show current time in UTC') async def time(ctx): - await ctx.channel.send(f'The time is: `{datetime.now(timezone.utc)} UTC`') + await ctx.channel.send(f'The Coordinated Universal Time is `{datetime.now(timezone.utc)}`') @bot.command(name='epg', help='Lists scheduled streams') async def epg(ctx):