aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/alias.py
diff options
context:
space:
mode:
authorGravatar S. Co1 <[email protected]>2020-03-31 14:07:08 -0400
committerGravatar GitHub <[email protected]>2020-03-31 14:07:08 -0400
commit61fdf96bea29e69c358b072bd3c8d8e136a16b1e (patch)
treee0effdbdc479fb48a832a6dbdc646d5043743ef7 /bot/cogs/alias.py
parent(Tags): Removed unnecessary `send_embed_with_trashcan` function due using exi... (diff)
parentMerge pull request #846 from python-discord/feat/filter/322/merge-tokens-words (diff)
Merge branch 'master' into tags-trashcan-react
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)