mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
in listall, put id in parentheses /outside/ the quotes.
This commit is contained in:
parent
65ed84a45a
commit
770d407d1c
@ -338,8 +338,8 @@ class MessageParser(callbacks.Plugin, plugins.ChannelDBHandler):
|
||||
irc.reply('There are no regexp triggers in the database.')
|
||||
return
|
||||
|
||||
s = [ "%s (%d)" % (regexp[0], regexp[1]) for regexp in regexps ]
|
||||
irc.reply('"' + '","'.join(s) + '"')
|
||||
s = [ "\"%s\" (%d)" % (regexp[0], regexp[1]) for regexp in regexps ]
|
||||
irc.reply(', '.join(s))
|
||||
listall = wrap(listall, ['channel'])
|
||||
|
||||
def triggerrank(self, irc, msg, args, channel):
|
||||
|
Loading…
Reference in New Issue
Block a user