Add line to script header. The header should specify configuration options for the job scheduler, without containing executable commands.
(self, line)
| 50 | self.add_header_line('#!{}'.format(interpreter)) |
| 51 | |
| 52 | def add_header_line(self, line): |
| 53 | """Add line to script header. |
| 54 | |
| 55 | The header should specify configuration options for the job |
| 56 | scheduler, without containing executable commands. |
| 57 | |
| 58 | """ |
| 59 | self.header.append(line) |
| 60 | |
| 61 | def add_body_line(self, line): |
| 62 | """Add line to script body. |