X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/163cc00ad85a00a88ae8c4031827b922b4e531eb..b091071713e832e6c007e57b49d68e2a3b54f0ed:/modules/help.py diff --git a/modules/help.py b/modules/help.py index 8d79721..299cf0a 100644 --- a/modules/help.py +++ b/modules/help.py @@ -91,6 +91,7 @@ def help(bot, user, chan, realtarget, *args): lines.append(HelpLine(c, "", "Alias of %s" % (func.cmd[0]), (user.glevel > 0), func.reqglevel, func.__module__)) for line in sorted(lines): bot.slowmsg(user, str(line)) + bot.slowmsg(user, "End of command listing.") else: # help for a specific command/topic cmd = str(' '.join(args)) if cmd in cmds and user.glevel >= cmds[cmd].reqglevel: @@ -98,6 +99,7 @@ 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__))) 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:])))