diff options
| author | 2020-03-31 12:16:14 +0200 | |
|---|---|---|
| committer | 2020-03-31 12:16:14 +0200 | |
| commit | 687f2c4c5875e9de2abeeb122eeee529816ee204 (patch) | |
| tree | 19296b9fffd22279a62c50d6a5f3b1e73dca12df /bot/cogs/alias.py | |
| parent | Set unsilence permissions to inherit instead of true (diff) | |
| parent | Merge branch 'master' into update-logging-levels (diff) | |
Merge pull request #845 from python-discord/update-logging-levels
Logging Level Adjustments
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/alias.py | 2 |
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) |