mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Factoids: Add simpleSyntax argument to getCommandHelp.
It helps to properly override the parent class's method so that Misc.help doesn't error when trying to get Factoids.learn's help. Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
parent
9f718fb01c
commit
cca36ed9f2
@ -104,7 +104,7 @@ class Factoids(callbacks.Plugin, plugins.ChannelDBHandler):
|
||||
db.commit()
|
||||
return db
|
||||
|
||||
def getCommandHelp(self, command):
|
||||
def getCommandHelp(self, command, simpleSyntax=None):
|
||||
method = self.getCommandMethod(command)
|
||||
if method.im_func.func_name == 'learn':
|
||||
chan = None
|
||||
@ -112,12 +112,15 @@ class Factoids(callbacks.Plugin, plugins.ChannelDBHandler):
|
||||
chan = dynamic.msg.args[0]
|
||||
s = self.registryValue('learnSeparator', chan)
|
||||
help = callbacks.getHelp
|
||||
if conf.get(conf.supybot.reply.showSimpleSyntax, chan):
|
||||
if simpleSyntax is None:
|
||||
simpleSyntax = conf.get(conf.supybot.reply.showSimpleSyntax,
|
||||
chan)
|
||||
if simpleSyntax:
|
||||
help = callbacks.getSyntax
|
||||
return help(method,
|
||||
doc=method._fake__doc__ % (s, s),
|
||||
name=callbacks.formatCommand(command))
|
||||
return super(Factoids, self).getCommandHelp(command)
|
||||
return super(Factoids, self).getCommandHelp(command, simpleSyntax)
|
||||
|
||||
def learn(self, irc, msg, args, channel, key, factoid):
|
||||
db = self.getDb(channel)
|
||||
|
Loading…
Reference in New Issue
Block a user