Skip to content
Snippets Groups Projects
Commit 51679a51 authored by brunner's avatar brunner
Browse files

No commit message

No commit message
parent 7e83a098
No related branches found
No related tags found
No related merge requests found
......@@ -566,9 +566,9 @@ class CycleControl(dict):
nextrestartfilename = self['da.restart.fname'].replace(jobid,nextjobid)
nextlogfilename = logfile.replace(jobid,nextjobid)
if self.daplatform.ID == 'WU capegrim':
template += '\nexport icycle_in_job=%d\npython %s rc=%s %s >&%s &\n' % (cycle+1,execcommand, nextrestartfilename, join(self.opts, ''), nextlogfilename,)
template += '\nexport icycle_in_job=%d\npython %s rc=%s %s >&%s &\n' % (cycle+1,execcommand, nextrestartfilename, join(str(self.opts), ''), nextlogfilename,)
else:
template += '\nexport icycle_in_job=%d\npython %s rc=%s %s >&%s\n' % (cycle+1,execcommand, nextrestartfilename, str.join(self.opts, ''), nextlogfilename,)
template += '\nexport icycle_in_job=%d\npython %s rc=%s %s >&%s\n' % (cycle+1,execcommand, nextrestartfilename, str.join(str(self.opts), ''), nextlogfilename,)
# write and submit
self.daplatform.write_job(jobfile, template, jobid)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment