diff --git a/sopel_SpiceBot_Core_Prerun/__init__.py b/sopel_SpiceBot_Core_Prerun/__init__.py index a1fc88c..8e2ea57 100644 --- a/sopel_SpiceBot_Core_Prerun/__init__.py +++ b/sopel_SpiceBot_Core_Prerun/__init__.py @@ -62,7 +62,10 @@ def prerun(): def rebuild_trigger(comrun, trigger): - print([x for x in dir(trigger.match) if not x.startswith("__")]) + matchlist = [x for x in dir(trigger.match) if not x.startswith("__")] + for x in matchlist: + print(x) + print(eval("match.%s" % x)) return trigger