mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Slightly changed the error message to make it sound better.
This commit is contained in:
parent
7d3d501073
commit
3c4a53c42c
@ -86,7 +86,7 @@ class Misc(callbacks.Privmsg):
|
||||
if ambiguousCommands:
|
||||
if len(ambiguousCommands) == 1: # Common case.
|
||||
(command, cbs) = ambiguousCommands.popitem()
|
||||
s = 'The command %r is available in the plugins %s. '\
|
||||
s = 'The command %r is available in the %s plugins. '\
|
||||
'Please specify the plugin whose command you ' \
|
||||
'wish to call by using its name as a command ' \
|
||||
'before %r' % \
|
||||
@ -95,7 +95,7 @@ class Misc(callbacks.Privmsg):
|
||||
L = []
|
||||
while ambiguousCommands:
|
||||
(command, cbs) = ambiguousCommands.popitem()
|
||||
L.append('%r is available in the plugins %s' % \
|
||||
L.append('%r is available in the %s plugins' % \
|
||||
(command, utils.commaAndify(cbs)))
|
||||
s = '%s; please specify from which plugins to ' \
|
||||
'call these commands.' % '; '.join(L)
|
||||
|
Loading…
Reference in New Issue
Block a user