diff --git a/pkg/qqbot/manager.py b/pkg/qqbot/manager.py index fb0c8e96..b97f8418 100644 --- a/pkg/qqbot/manager.py +++ b/pkg/qqbot/manager.py @@ -46,6 +46,7 @@ def check_response_rule(text: str) -> (bool, str): import re match = re.match(rule, text) if match: + print(match) return True, match.group(1) return False, ""