X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/6501c178d17fff97a2519240311f354724c3e9e5..7c4a7d0ac3865f38f18c91ef6725c1408195c387:/modules/subtext.py?ds=sidebyside diff --git a/modules/subtext.py b/modules/subtext.py index f07e554..ca0ab04 100644 --- a/modules/subtext.py +++ b/modules/subtext.py @@ -7,7 +7,7 @@ modinfo = { 'author': 'Erebus Team', 'license': 'public domain', - 'compatible': [2], # compatible module API versions + 'compatible': [0], # compatible module API versions 'depends': [], # other modules required to work properly? 'softdeps': [], # modules which are preferred but not required } @@ -32,16 +32,13 @@ def privmsg_hook(bot, line): msg = pieces[3][1:] mo = re_findsub.match(msg) if mo: - print lastline[chan] - print mo.groupdict() if mo.group('global') is not None: count = 0 # unlimited else: count = 1 # only first try: newline = re.sub(mo.group('search'), mo.group('replace'), lastline[chan].msg, count) - except Exception as e: print e; return # ignore it if it doesn't work - print newline + except Exception as e: return # ignore it if it doesn't work if newline != lastline[chan].msg: if lastline[chan].sender == fromnick: bot.msg(chan, "<%s> %s" % (lastline[chan].sender, newline))