diff --git a/src/html_helper.py b/src/html_helper.py
index 8f94b67..6e81c7e 100644
--- a/src/html_helper.py
+++ b/src/html_helper.py
@@ -174,10 +174,8 @@ def get_html_files(path, output_file_path):
output_file_path = os.path.abspath(output_file_path)
for p in pathlib.Path(path).rglob("*.html"):
- print(p)
res = str(p.absolute())
if output_file_path in res:
- print("damn")
continue
tmp = BeautifulSoup("".join(open(res)), features="html.parser")