【发布时间】:2019-09-29 01:21:58
【问题描述】:
问题是我写了一些代码,我认为是正确的,但显然它是不正确的,所以我想问你们,因为你们可以更好地了解
@bot.event
async def on_message(message):
if message.author == bot.user:
print(message.author,message.content)
return
print(message.author,message.content)
channel = bot.get_channel(576705173766930433)
await channel.send('{0.author}: {0.message}'.format(message))
当我发送消息时,控制台会反对: 忽略 on_message 中的异常
Traceback (most recent call last):
File "C:\Users\User\AppData\Local\Programs\Python\Python36\lib\site-packages\discord\client.py", line 255, in _run_event
await coro(*args, **kwargs)
File "C:\Users\User\Desktop\Servant_Of_Paschen.py", line 38, in on_message
await channel.send('{0.author}: {0.message}'.format(message))
AttributeError: 'str' object has no attribute 'author'
【问题讨论】:
标签: python python-3.x bots discord