diff --git a/plugins/MessageParser/plugin.py b/plugins/MessageParser/plugin.py index 9b1395af0..67cadec85 100644 --- a/plugins/MessageParser/plugin.py +++ b/plugins/MessageParser/plugin.py @@ -404,7 +404,7 @@ 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 ] + s = [ "(%d) \"%s\"" % (regexp[1], regexp[0]) for regexp in regexps ] separator = self.registryValue('listSeparator', channel) irc.reply(separator.join(s)) list = wrap(list, ['channelOrGlobal'])