Change the time command string
This commit is contained in:
parent
cc224901e7
commit
9d44a0a2ca
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue