Browse Source

[commands] Fix erroneous string in dm_only check

pull/2072/head
Rapptz 6 years ago
parent
commit
ec1b3434a2
  1. 2
      discord/ext/commands/core.py

2
discord/ext/commands/core.py

@ -1444,7 +1444,7 @@ def dm_only():
def predicate(ctx):
if ctx.guild is not None:
raise PrivateMessageOnly('This command cannot be used in private messages.')
raise PrivateMessageOnly('This command can only be used in private messages.')
return True
return check(predicate)

Loading…
Cancel
Save