mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-17 06:00:42 +01:00
Fix error in format() conversion in plugins/__init__.py
This commit is contained in:
parent
4e0f37e134
commit
fd604dc012
@ -438,7 +438,7 @@ class ChannelIdDatabasePlugin(callbacks.Privmsg):
|
||||
|
||||
def searchSerializeRecord(self, record):
|
||||
text = utils.str.ellipsisify(record.text, 50)
|
||||
return format('#%s: %q' % (record.id, text))
|
||||
return format('#%s: %q', record.id, text)
|
||||
|
||||
def search(self, irc, msg, args, channel, optlist, glob):
|
||||
"""[<channel>] [--{regexp,by} <value>] [<glob>]
|
||||
|
Loading…
x
Reference in New Issue
Block a user