diff --git a/plugins/printerfact.py b/plugins/printerfact.py index a68f637..97dc3e6 100644 --- a/plugins/printerfact.py +++ b/plugins/printerfact.py @@ -4,12 +4,13 @@ import requests, re, random regex = re.compile(re.escape("cat"), re.IGNORECASE) kittenrex = re.compile(re.escape("kitten"), re.IGNORECASE) +preggorex = re.compile(re.escape("pregmant"), re.IGNORECASE) @hook.regex("PHP sadness$") def php_fact(inp): return "http://phpsadness.com/sad/" + str(random.randint(0,53)) -@hook.regex("printer fact$") +@hook.regex("^printer fact$") @hook.command def printerfact(inp, say=None): r = requests.get('https://catfacts-api.appspot.com/api/facts?number=1')