diff options
author | 2020-09-29 11:28:35 +0530 | |
---|---|---|
committer | 2020-09-29 11:28:35 +0530 | |
commit | c661081c09faf6d2628a55c051e15910d0384e96 (patch) | |
tree | 93e9296174cbfb951d763f9d1d22aa9f414a1bbd | |
parent | Update bot/exts/valentines/valentine_zodiac.py (diff) |
solved the invalid syntax issue
-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 e56fbebd..55e9085d 100644 --- a/bot/exts/valentines/valentine_zodiac.py +++ b/bot/exts/valentines/valentine_zodiac.py @@ -106,7 +106,7 @@ class ValentineZodiac(commands.Cog): final_embed = discord.Embed() final_embed.color = Colours.pink final_embed.description = f"Zodiac sign is not found because, {e}" - log.info(f"Error in "zodiac date" command:\n{e}.") + log.info(f'Error in "zodiac date" command:\n{e}.') else: final_embed = self.zodiac_build_embed(zodiac_sign_based_on_month_and_date) |