Show More
@@ -1123,7 +1123,6 b' class BatchSystemLauncher(BaseLauncher):' | |||||
1123 | def _insert_queue_in_script(self): |
|
1123 | def _insert_queue_in_script(self): | |
1124 | """Inserts a queue if required into the batch script. |
|
1124 | """Inserts a queue if required into the batch script. | |
1125 | """ |
|
1125 | """ | |
1126 | print self.queue_regexp.search(self.batch_template) |
|
|||
1127 | if self.queue and not self.queue_regexp.search(self.batch_template): |
|
1126 | if self.queue and not self.queue_regexp.search(self.batch_template): | |
1128 | self.log.debug("adding PBS queue settings to batch script") |
|
1127 | self.log.debug("adding PBS queue settings to batch script") | |
1129 | firstline, rest = self.batch_template.split('\n',1) |
|
1128 | firstline, rest = self.batch_template.split('\n',1) | |
@@ -1132,7 +1131,6 b' class BatchSystemLauncher(BaseLauncher):' | |||||
1132 | def _insert_job_array_in_script(self): |
|
1131 | def _insert_job_array_in_script(self): | |
1133 | """Inserts a job array if required into the batch script. |
|
1132 | """Inserts a job array if required into the batch script. | |
1134 | """ |
|
1133 | """ | |
1135 | print self.job_array_regexp.search(self.batch_template) |
|
|||
1136 | if not self.job_array_regexp.search(self.batch_template): |
|
1134 | if not self.job_array_regexp.search(self.batch_template): | |
1137 | self.log.debug("adding job array settings to batch script") |
|
1135 | self.log.debug("adding job array settings to batch script") | |
1138 | firstline, rest = self.batch_template.split('\n',1) |
|
1136 | firstline, rest = self.batch_template.split('\n',1) |
General Comments 0
You need to be logged in to leave comments.
Login now