mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-05 02:29:22 +01:00
plugins: Fix AttributeError in getCommandHelp.
Introduced in commit 4046a1b201
.
This commit is contained in:
parent
f9bf75aeee
commit
8b9ac3540d
@ -336,7 +336,8 @@ class ChannelIdDatabasePlugin(callbacks.Plugin):
|
||||
}
|
||||
|
||||
def getCommandHelp(self, name, simpleSyntax=None):
|
||||
helpTemplate = self.__parent.getCommandHelp(name, simpleSyntax)
|
||||
helpTemplate = string.Template(self.__parent.getCommandHelp(
|
||||
name, simpleSyntax))
|
||||
return helpTemplate.substitute(self._typeSubstitutions())
|
||||
|
||||
def noSuchRecord(self, irc, channel, id):
|
||||
|
Loading…
Reference in New Issue
Block a user