aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/alias.py
diff options
context:
space:
mode:
authorGravatar Karlis S <[email protected]>2020-03-31 14:23:16 +0300
committerGravatar GitHub <[email protected]>2020-03-31 14:23:16 +0300
commitad63ac99d36e308ca84ea1d236c0969c319c2ce4 (patch)
tree706d4037b49dc9bab34b26997edd2dc10136fb41 /bot/cogs/alias.py
parentMerge branch 'master' into zen-match-fix (diff)
parentMerge pull request #845 from python-discord/update-logging-levels (diff)
Merge branch 'master' into zen-match-fix
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)