Skip to content
Snippets Groups Projects
Commit ad5cd27d authored by Manuel Günther's avatar Manuel Günther
Browse files

Fixed wrong keyword removal during grid submission

parent ba374d0e
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,7 @@ class GridSubmission: ...@@ -58,7 +58,7 @@ class GridSubmission:
assert os.path.isfile(jman) assert os.path.isfile(jman)
self.args = args self.args = args
self.command_line = [p for p in command_line_parameters if not p.startswith('--skip') and p not in ('-q', '--dry-run', '-o', '--execute-only')] self.command_line = [p for p in command_line_parameters if not p.startswith('--skip') and p not in ('-q', '--dry-run')]
self.fake_job_id = first_fake_job_id self.fake_job_id = first_fake_job_id
import gridtk import gridtk
......
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