Skip to content
Snippets Groups Projects
Commit 190513d9 authored by David Verelst's avatar David Verelst
Browse files

fixed wrong default argument for pbs_out/in

parent f6c9e838
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -258,10 +258,10 @@ if __name__ == '__main__':
dest='jobname', default=None,
help='PBS job name, default: python file name.')
parser.add_argument('--pbs_in', type='string', action='store',
dest='pbs_in', default=None,
dest='pbs_in', default='pbs_in',
help='pbs_in directory, default: pbs_in')
parser.add_argument('--pbs_out', type='string', action='store',
dest='pbs_out', default=None,
dest='pbs_out', default='pbs_out',
help='pbs_out directory, default: pbs_out')
# get all the other arguments and add them to the help
......
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