From 8a436307da5fed675dfb451a2f56a21627562b5a Mon Sep 17 00:00:00 2001 From: Patrick Godwin <patrick.godwin@ligo.org> Date: Thu, 23 May 2019 15:20:59 -0700 Subject: [PATCH] pipeline.py: shorten dag file (provided by Chad Hanna) --- gstlal/python/pipeline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gstlal/python/pipeline.py b/gstlal/python/pipeline.py index f9e3878834..74e571a39a 100644 --- a/gstlal/python/pipeline.py +++ b/gstlal/python/pipeline.py @@ -1431,8 +1431,8 @@ class CondorDAGNode(object): Write the parent/child relations for this job to the DAG file descriptor. @param fh: descriptor of open DAG file. """ - for parent in self.__parents: - fh.write( 'PARENT ' + str(parent) + ' CHILD ' + str(self) + '\n' ) + if len(self.__parents) > 0: + fh.write( 'PARENT ' + " ".join((str(p) for p in self.__parents)) + ' CHILD ' + str(self) + '\n' ) def write_pre_script(self,fh): """ -- GitLab