aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/alias.py
diff options
context:
space:
mode:
authorGravatar S. Co1 <[email protected]>2020-03-31 13:42:05 -0400
committerGravatar GitHub <[email protected]>2020-03-31 13:42:05 -0400
commit2c3b97546fb8a286e961fef2e75de6bc25a35af9 (patch)
tree486464fc26f8db4ab5fb234136ecb1a230d5e334 /bot/cogs/alias.py
parentFiltering: merge the word and token watch filters (diff)
parentMerge pull request #833 from ks129/zen-match-fix (diff)
Merge branch 'master' into feat/filter/322/merge-tokens-words
Diffstat (limited to '')
-rw-r--r--bot/cogs/alias.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py
index 9001e18f0..55c7efe65 100644
--- a/bot/cogs/alias.py
+++ b/bot/cogs/alias.py
@@ -29,7 +29,7 @@ class Alias (Cog):
return log.info(f'Did not find command "{cmd_name}" to invoke.')
elif not await cmd.can_run(ctx):
return log.info(
- f'{str(ctx.author)} tried to run the command "{cmd_name}"'
+ f'{str(ctx.author)} tried to run the command "{cmd_name}" but lacks permission.'
)
await ctx.invoke(cmd, *args, **kwargs)