From 960e6740d6b8da3c0e25e98b6398a1c9cc29c15b Mon Sep 17 00:00:00 2001 From: Jonas Leder Date: Thu, 2 Apr 2020 18:35:53 +0200 Subject: [PATCH] documentation on poll result link --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index ad4b3a6..b82bdba 100644 --- a/bot.py +++ b/bot.py @@ -285,8 +285,8 @@ async def result(ctx, id):#this function prints the result of a poll embed = discord.Embed(title=poll_message.embeds[0].title, description=description)#prepare the result embed.set_footer(text='enden on ' + datetime.now().strftime("%d.%m.%Y %H:%M:%S"))#set as footer the end time of the poll await poll_message.edit(embed=embed)#edit the origina lmessage and print the results - embed2 = discord.Embed(title=" ", description="You can find the result of the poll in the original message [here](" + poll_message.jump_url + ").") - await ctx.message.channel.send(embed=embed2)#send a message with a link to the original poll in the chat + embed2 = discord.Embed(title=" ", description="You can find the result of the poll in the original message [here](" + poll_message.jump_url + ").")#This message will be printed to the end of the chat with a link to the original (where the results are) + await ctx.message.channel.send(embed=embed2)#print the result message from one line up c.execute("DELETE FROM poll where pollID = ?", [id])#delete the entries from the poll in the database conn.commit()#write the database to disk