diff --git a/src/changelog/changelog.py b/src/changelog/changelog.py index 1482dce..ac0d707 100644 --- a/src/changelog/changelog.py +++ b/src/changelog/changelog.py @@ -65,10 +65,6 @@ def parse_text_command(text): def parse_text(line): if results := re.findall(search_pattern, line, re.IGNORECASE): logging.debug(f"Found matches: {results}") - if len(results) != 1: - logging.debug("More than 1 match found.") - else: - logging.debug("1 match found.") parentheses_items: list = [] # FIXME: add links to other mentioned sections, for now just link the first one section_id = format_section_id(results[0])