discord.ext.commands.errors.CommandInvokeError:命令引发了异常:AttributeError:'Command'对象没有属性'strftime'

时间:2020-06-11 05:44:47

标签: python discord.py discord.py-rewrite

我正在尝试发出机器人命令,您可以在这里询问机器人是否是星期三,但我一直收到此错误,我也不知道该怎么办。请帮忙。 这是我的代码:

@client.command(aliases=['wednesdaymydudes', 'wednesday', 'wednesdaycheck'],
                pass_context=True)
async def isitwednesdaymydudes(ctx):
    currentday = time.strftime('%A')
    if currentday == 'Wednesday':
        await ctx.send('It is Wednesday, {}'.format(ctx.message.author.mention))
    else:
        await ctx.send('It is not Wednesday, {}'.format(ctx.message.author.mention))

1 个答案:

答案 0 :(得分:1)

要获取星期几,您应该做的是

from datetime import datetime as dt

day = dt.now()

day_of_week = day.strftime('%A')