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