From 97d1fe39d6b8cfd871d5b2109f3df131401a849e Mon Sep 17 00:00:00 2001 From: Jeremy Auguste <jeremy.auguste@dhcp-14.lidil.univ-mrs.fr> Date: Thu, 9 Nov 2017 16:07:13 +0100 Subject: [PATCH] Forgot to remove some double quotes --- oargen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oargen.py b/oargen.py index 89e7071..18204ee 100755 --- a/oargen.py +++ b/oargen.py @@ -73,9 +73,9 @@ def main(): command.append('-I') else: job_command = [args.command] + args.argument - command.append('"{}"'.format(" ".join(job_command))) + command.append(" ".join(job_command)) - print(" ".join(command)) + print(subprocess.list2cmdline(command)) if args.run: subprocess.call(command) -- GitLab