Skip to content

Commit 4716004

Browse files
committed
fix small error on pptx loader
1 parent 6ab614a commit 4716004

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openrag/components/indexer/loaders/pptx_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def convert(self, local_path):
5454
html_table += "</tr>"
5555
first_row = False
5656
html_table += "</table></body></html>"
57-
md_content += "\n" + convert(html_table).text_content.strip() + "\n"
57+
md_content += "\n" + convert(html_table).strip() + "\n"
5858

5959
# Charts
6060
if shape.has_chart:

0 commit comments

Comments
 (0)