Skip to content

Commit 4c0d871

Browse files
committed
Remove additional debug
1 parent a24cae3 commit 4c0d871

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

bot.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,8 +1048,6 @@ async def trigger_auto_triggers(self, message, channel, *, cls=commands.Context)
10481048

10491049
ctx.command.checks = old_checks
10501050
continue
1051-
else:
1052-
print("unable to find command")
10531051

10541052
async def get_context(self, message, *, cls=commands.Context):
10551053
"""

cogs/modmail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ async def reply(self, ctx, *, msg: str = ""):
818818
Supports attachments and images as well as
819819
automatically embedding image URLs.
820820
"""
821-
print("MSG IS", msg, ctx.message.content)
821+
822822
ctx.message.content = msg
823823

824824
async with ctx.typing():

cogs/utility.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1750,12 +1750,9 @@ async def autotrigger_add(self, ctx, keyword, *, command):
17501750
print(self.bot.get_command(" ".join(split_cmd[0:n])))
17511751
valid = True
17521752
break
1753-
1754-
print("Split command", split_cmd, "Range", range(1, len(split_cmd) + 1), self.bot.aliases)
17551753

17561754
if not valid and self.bot.aliases:
17571755
for n in range(1, len(split_cmd) + 1):
1758-
print(" ".join(split_cmd[0:n]), self.bot.aliases.get(" ".join(split_cmd[0:n])))
17591756
if self.bot.aliases.get(" ".join(split_cmd[0:n])):
17601757
print(self.bot.aliases.get(" ".join(split_cmd[0:n])))
17611758
valid = True

0 commit comments

Comments
 (0)