Skip to content

Commit 132a8f3

Browse files
authored
Update ppt2pdf_linux.py
1 parent 44c2d47 commit 132a8f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ppt2pdf/ppt2pdf_linux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
PATH = "INPUT FOLDER"
77
# extension
88
et = "pptx" # or ppt
9-
files = [f for f in glob.glob(PATH + "/**/*.{}".format(et),recursive =True)]
9+
files = [f for f in glob.glob(PATH + "/**/*.{}".format(et), recursive=True)]
1010
for f in tqdm.tqdm(files):
1111
command = "unoconv -f pdf \"{}\"".format(f)
1212
os.system(command)

0 commit comments

Comments
 (0)