X-Git-Url: https://plomlompom.com/repos/?p=plomlombot-irc.git;a=blobdiff_plain;f=plomlombot.py;h=64e46f8e42c8594d3be8748473fdfefecf827144;hp=82f96a21e4c93b7371ef1669f749fd73c96afde0;hb=d937e8a8fd459058147747d896e8db18db609a3e;hpb=30c070d0602b36ed7ebee10046b9f5331a1cb412 diff --git a/plomlombot.py b/plomlombot.py index 82f96a2..64e46f8 100755 --- a/plomlombot.py +++ b/plomlombot.py @@ -185,14 +185,14 @@ def handle_command(command, argument, notice, target, session): shuffle(usable_selections) return usable_selections[0][select_length] - def purge_undesired(tokens): - for token in tokens: - if None != re.match("^" + URLREGEX, token): - del(tokens[tokens.index(token)]) + def malkovich_undesired(tokens): + #for token in tokens: + # if None != re.match("^" + URLREGEX, token): + # del(tokens[tokens.index(token)]) for name in session.uses_in_chan: while True: try: - del(tokens[tokens.index(name.lower())]) + tokens[tokens.index(name.lower())] = "malkovich" except ValueError: break return tokens @@ -209,7 +209,7 @@ def handle_command(command, argument, notice, target, session): for line in lines: line = line.replace("\n", "").lower() tokens += line.split() - tokens = purge_undesired(tokens) + tokens = malkovich_undesired(tokens) if len(tokens) <= select_length: notice("NOT ENOUGH TEXT TO MARKOV.") return