diff options
author | 2020-09-24 16:48:25 +0530 | |
---|---|---|
committer | 2020-09-24 16:48:25 +0530 | |
commit | abb493f3aa0fbf7c70f7be7a25943a0465ef18fc (patch) | |
tree | 6c168f90c0a0888f174307f63ef16f64f5ccd8c7 | |
parent | replaced c_zodiac with zodiac (diff) |
corrected order of logging
-rw-r--r-- | bot/exts/valentines/valentine_zodiac.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/valentines/valentine_zodiac.py b/bot/exts/valentines/valentine_zodiac.py index 7d428878..0fd748f0 100644 --- a/bot/exts/valentines/valentine_zodiac.py +++ b/bot/exts/valentines/valentine_zodiac.py @@ -67,9 +67,9 @@ class ValentineZodiac(commands.Cog): break else: zodiac = None - log.info("Wrong Zodiac date or month provided") - return zodiac + log.info("Wrong Zodiac date or month provided") log.info("Zodiac name sent") + return zodiac @commands.group(name="partnerzodiac", invoke_without_command=True) async def partner_zodiac(self, ctx: commands.Context, zodiac_sign: str) -> None: |