diff options
-rw-r--r-- | cogs/stats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cogs/stats.py b/cogs/stats.py index 54037c2..911d9bf 100644 --- a/cogs/stats.py +++ b/cogs/stats.py @@ -22,7 +22,7 @@ class Stats(Cog): if stats is None or cb is None: embed = Embed(title="No Stats!", description=f"@{person.name} has no stats! Trying using the bot and then running this command", color=Color.red()) return await ctx.response.send_message(embed=embed) - embed = Embed(title="@{person.name}'s qbb stats", description=f"""**Number of correct tossups:** {stats.questions_correct} + embed = Embed(title=f"@{person.name}'s qbb stats", description=f"""**Number of correct tossups:** {stats.questions_correct} **Number of incorrect tossups:** {stats.questions_incorrect} """) for cat in category_field_translations.values(): |