Implemented Generation of Report

This commit is contained in:
jmueller
2023-12-14 21:39:03 +01:00
parent cf60ad7381
commit 6a2f239f47

View File

@@ -805,7 +805,7 @@ def create_report_embed():
no_votes = cur.fetchall()
description = description + "**" + recruit[0] + ":** " + str(recruit[1]) + " Ja, " + str(recruit[2]) + " Nein.\n"
for no_vote in no_votes:
description = description + "Begründung von " + guild.get_member(no_vote[1]).display_name + ": " + no_vote[0]
description = description + "Begründung von " + guild.get_member(no_vote[1]).display_name + ": " + no_vote[0] + "\n"
description = description + "\n\n"
else:
description = description + "**" + recruit[0] + ":** " + str(recruit[1]) + " Ja, " + str(recruit[2]) + " Nein.\n"