diff --git a/docling/backend/msword_backend.py b/docling/backend/msword_backend.py index ff027685..521cb1b0 100644 --- a/docling/backend/msword_backend.py +++ b/docling/backend/msword_backend.py @@ -141,10 +141,10 @@ class MsWordDocumentBackend(DeclarativeDocumentBackend): # Check for Tables if element.tag.endswith("tbl"): - # try: - self.handle_tables(element, docx_obj, doc) - # except Exception: - # _log.debug("could not parse a table, broken docx table") + try: + self.handle_tables(element, docx_obj, doc) + except Exception: + _log.debug("could not parse a table, broken docx table") elif found_drawing or found_pict: self.handle_pictures(element, docx_obj, doc)