diff --git a/main.py b/main.py index 93f0102..f61e3fc 100644 --- a/main.py +++ b/main.py @@ -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"