Skip to content
Snippets Groups Projects
Commit 58638e2c authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #8437: Avoid empty parameters

parent e5dc6fa1
No related branches found
No related tags found
No related merge requests found
......@@ -185,7 +185,7 @@ def run_via_custom_cmdline(logger, host, command, environment, arguments, config
command = commandStr,
job_name = jobname(command),
nr_cores = resources.get("cores", 1),
).split(' ')
).split()
logger.debug("Dispatching command to %s with custom_cmdline: %s" % (host, full_command_line))
return full_command_line
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment