From b2be7975c9f007724342704d49fb9fc47f3cf8ca Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sat, 10 Aug 2019 18:06:40 +0000 Subject: [PATCH] Merged in [16600] from rjsparks@nostrum.com: Fixed a subtle bug in the code that converts slides to PDF that was writing back into settings. - Legacy-Id: 16645 Note: SVN reference [16600] has been migrated to Git commit b4714f95579efcb5051438239a5df002036c9975 --- ietf/secr/proceedings/proc_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/secr/proceedings/proc_utils.py b/ietf/secr/proceedings/proc_utils.py index 6c2b9c384..14863eb4b 100644 --- a/ietf/secr/proceedings/proc_utils.py +++ b/ietf/secr/proceedings/proc_utils.py @@ -275,7 +275,7 @@ def post_process(doc): ''' if is_powerpoint(doc) and hasattr(settings,'SECR_PPT2PDF_COMMAND'): try: - cmd = settings.SECR_PPT2PDF_COMMAND + cmd = list(settings.SECR_PPT2PDF_COMMAND) # Don't operate on the list actually in settings cmd.append(doc.get_file_path()) # outdir cmd.append(os.path.join(doc.get_file_path(),doc.uploaded_filename)) # filename subprocess.check_call(cmd)