diff options
Diffstat (limited to 'question_of_the_day')
-rw-r--r-- | question_of_the_day/question_of_the_day.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/question_of_the_day/question_of_the_day.py b/question_of_the_day/question_of_the_day.py index 1a0f74b..a307552 100644 --- a/question_of_the_day/question_of_the_day.py +++ b/question_of_the_day/question_of_the_day.py @@ -418,7 +418,7 @@ class QuestionOfTheDay(commands.Cog): "\n".join( [ f"{i + 1}. {redbot.core.utils.chat_formatting.bold(question['question'])} by " - + (await ctx.guild.fetch_member(question["asked_by"])).name + + (ctx.guild.get_member(question["asked_by"])).name + f" ({question['asked_by']})" for i, question in enumerate(questions) ] |