removed unneeded fstrings and fixed position of success message

This commit is contained in:
phixxy 2024-01-25 02:35:38 -08:00
parent 2069fb788d
commit c11f16a5d8

View file

@ -61,7 +61,7 @@ class Admin(commands.Cog):
async def setup(bot): async def setup(bot):
try: try:
bot.logger.info(f"Successfully added Admin cog")
await bot.add_cog(Admin(bot)) await bot.add_cog(Admin(bot))
bot.logger.info("Successfully added Admin cog")
except: except:
bot.logger.exception(f"Failed to add Admin cog") bot.logger.exception("Failed to add Admin cog")