diff options
author | 2020-10-01 13:50:37 +0530 | |
---|---|---|
committer | 2020-10-01 13:50:37 +0530 | |
commit | d446cee6614ee333a65e671109012648a3e56628 (patch) | |
tree | 947e0a61bc8a532d1d2266a0d018f59ea240c67b | |
parent | changed trace to info in except block (diff) |
changed ` to codeblock
-rw-r--r-- | bot/exts/valentines/valentine_zodiac.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/valentines/valentine_zodiac.py b/bot/exts/valentines/valentine_zodiac.py index 433947a1..0925bf06 100644 --- a/bot/exts/valentines/valentine_zodiac.py +++ b/bot/exts/valentines/valentine_zodiac.py @@ -109,7 +109,7 @@ class ValentineZodiac(commands.Cog): except ValueError as e: final_embed = discord.Embed() final_embed.color = Colours.soft_red - final_embed.description = f"Zodiac sign could not be found because.\n`{e}`" + final_embed.description = f"Zodiac sign could not be found because.\n```{e}```" log.info(f'Error in "zodiac date" command:\n{e}.') else: final_embed = self.zodiac_build_embed(zodiac_sign_based_on_date) |