message.edit()接受1个位置参数,但给出了2个

时间:2019-08-16 11:37:34

标签: discord.py

我正在将discord bot迁移到新的discord.py api,其中一部分是编辑消息,它给了我这个错误。

output = "new text"

await message.edit(output)

Doc

我阅读文档有误吗?不求助于python知识的人,只是帮助朋友

1 个答案:

答案 0 :(得分:0)

文档指出可以指定多个字段。对于您的情况,您需要具有content=output才能编辑该消息。 希望有帮助!