Commit 1bfe6557 authored by Marco Cavalli's avatar Marco Cavalli
Browse files

feat: remove debug print statements for Annex C processing in make_trackchanges_diff

parent 2fbaa0a9
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -785,10 +785,6 @@ def make_trackchanges_diff(
    except Exception as e:
        new_html = "<html><body><div id='editor'></div></body></html>"

    if "annex-c" in out_path.lower():
        print(f"Processing Annex C: {out_path}")
        print(f"Content: {new_html}")  # Print the beginning of the content for debugging

    # Parse with BeautifulSoup
    old_soup = BeautifulSoup(old_html, "html.parser")
    new_soup = BeautifulSoup(new_html, "html.parser")