X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/fd07173df3e9070bac1a0cf79c729f14c781d799..f5aec86546a7762dd0202f3983de22fe1c3814e9:/modules/help.py diff --git a/modules/help.py b/modules/help.py index 770a0fb..27c80b7 100644 --- a/modules/help.py +++ b/modules/help.py @@ -6,7 +6,7 @@ modinfo = { 'author': 'Erebus Team', 'license': 'public domain', - 'compatible': [1,2], + 'compatible': [2], 'depends': [], 'softdeps': [], } @@ -107,7 +107,6 @@ def _genhelp(bot, user, chan, realtarget, *args): filepath = arg if minlevel != maxlevel: minlevel = maxlevel - print "%r %r %r %r" % (module, minlevel, maxlevel, filepath) for level in range(minlevel, maxlevel+1): if '%d' in filepath: filename = filepath % (level) @@ -144,7 +143,6 @@ def help(bot, user, chan, realtarget, *args): bot.slowmsg(user, str(HelpLine(func.cmd[0], func.syntax, func.shorthelp, (user.glevel > 0), func.reqglevel, func.module, func.reqclevel))) for line in func.longhelps: bot.slowmsg(user, " %s" % (line)) - bot.slowmsg(user, "End of help for %s." % (func.cmd[0])) if len(func.cmd) > 1: bot.slowmsg(user, " Aliases: %s" % (' '.join(func.cmd[1:]))) else: