diff --git a/bot.py b/bot.py index f1080a7..bb7b017 100644 --- a/bot.py +++ b/bot.py @@ -1,15 +1,16 @@ #!/usr/local/bin/python3.5 +from discord.ext import commands +from cogs.utils import config + import discord import traceback import logging import datetime import pendulum import os -os.chdir(os.path.dirname(os.path.realpath(__file__))) -from discord.ext import commands -from cogs.utils import config +os.chdir(os.path.dirname(os.path.realpath(__file__))) extensions = ['cogs.interaction', 'cogs.core', @@ -60,7 +61,7 @@ async def on_ready(): async def on_member_join(member): notifications = config.get_content('user_notifications') or {} server_notifications = notifications.get(member.server.id) - + # By default, notifications should be off unless explicitly turned on if not server_notifications: return @@ -73,7 +74,7 @@ async def on_member_join(member): async def on_member_remove(member): notifications = config.get_content('user_notifications') or {} server_notifications = notifications.get(member.server.id) - + # By default, notifications should be off unless explicitly turned on if not server_notifications: return diff --git a/cogs/mod.py b/cogs/mod.py index d0d33ed..e1d4178 100644 --- a/cogs/mod.py +++ b/cogs/mod.py @@ -247,7 +247,7 @@ class Mod: count += 1 if count >= limit: break - await self.bot.say("{} messages succesfully pruned") + await self.bot.say("{} messages succesfully deleted".format(count)) @commands.group(aliases=['rule'], pass_context=True, no_pm=True, invoke_without_command=True) @checks.custom_perms(send_messages=True)