We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44c2d47 commit 132a8f3Copy full SHA for 132a8f3
ppt2pdf/ppt2pdf_linux.py
@@ -6,7 +6,7 @@
6
PATH = "INPUT FOLDER"
7
# extension
8
et = "pptx" # or ppt
9
-files = [f for f in glob.glob(PATH + "/**/*.{}".format(et),recursive =True)]
+files = [f for f in glob.glob(PATH + "/**/*.{}".format(et), recursive=True)]
10
for f in tqdm.tqdm(files):
11
command = "unoconv -f pdf \"{}\"".format(f)
12
os.system(command)
0 commit comments