We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6b05ae commit b4714f9Copy full SHA for b4714f9
1 file changed
ietf/secr/proceedings/proc_utils.py
@@ -275,7 +275,7 @@ def post_process(doc):
275
'''
276
if is_powerpoint(doc) and hasattr(settings,'SECR_PPT2PDF_COMMAND'):
277
try:
278
- cmd = settings.SECR_PPT2PDF_COMMAND
+ cmd = list(settings.SECR_PPT2PDF_COMMAND) # Don't operate on the list actually in settings
279
cmd.append(doc.get_file_path()) # outdir
280
cmd.append(os.path.join(doc.get_file_path(),doc.uploaded_filename)) # filename
281
subprocess.check_call(cmd)
0 commit comments