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

Fixed bug in jman command line option

parent c707ee2c
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,8 @@ def submit(args): ...@@ -125,7 +125,8 @@ def submit(args):
if args.qname != 'all.q': kwargs['hvmem'] = args.memory if args.qname != 'all.q': kwargs['hvmem'] = args.memory
if args.parallel is not None: if args.parallel is not None:
kwargs['pe_opt'] = "pe_mth %d" % args.parallel kwargs['pe_opt'] = "pe_mth %d" % args.parallel
kwargs['memfree'] = get_memfree(args.memory, args.parallel) if args.memory is not None:
kwargs['memfree'] = get_memfree(args.memory, args.parallel)
kwargs['dry_run'] = args.dry_run kwargs['dry_run'] = args.dry_run
kwargs['stop_on_failure'] = args.stop_on_failure kwargs['stop_on_failure'] = args.stop_on_failure
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment