Skip to content

Commit

Permalink
Fix idiotic confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
fthrslntgy committed Dec 20, 2023
1 parent 9af8764 commit 1ce64c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/docx2pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class Converter():
def docx2pdf(file_name):
docx_file = "./results/%d.csv" % file_name
docx_file = "./results/%d.docx" % file_name
os.system('soffice --headless --norestore --writer --convert-to pdf ./%s --outdir %s' % (docx_file, "./reports"))
os.remove(docx_file)

Expand Down

0 comments on commit 1ce64c0

Please sign in to comment.