From ebbddd302d28b29e32bf1b26bcad927ab41cab81 Mon Sep 17 00:00:00 2001
From: Jan David Mol <mol@astron.nl>
Date: Fri, 1 Apr 2016 14:41:37 +0000
Subject: [PATCH] Task #8437: Fixed accidental removal of ,

---
 CEP/Pipeline/recipes/sip/master/copier.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CEP/Pipeline/recipes/sip/master/copier.py b/CEP/Pipeline/recipes/sip/master/copier.py
index 0f9f8405a82..c15dba135c9 100644
--- a/CEP/Pipeline/recipes/sip/master/copier.py
+++ b/CEP/Pipeline/recipes/sip/master/copier.py
@@ -249,7 +249,7 @@ class copier(MasterNodeInterface):
         # Run the compute nodes with the node specific mapfiles
         for source, target in zip(self.source_map, self.target_map):
             args = [source.host, source.file, target.file, globalfs]
-            self.append_job(target.host args)
+            self.append_job(target.host, args)
 
         # start the jobs, return the exit status.
         return self.run_jobs()
-- 
GitLab