Skip to content

Commit

Permalink
added default value for --quiet in sensitivity analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
jornbr committed Nov 19, 2020
1 parent 79cd277 commit 9d5972b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsac/sensitivity.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def main(args):
args.xmlfile = job_info['sample_args'].xmlfile

print('Reading configuration from %s...' % args.xmlfile)
current_job = job.fromConfigurationFile(args.xmlfile, verbose=not args.quiet)
current_job = job.fromConfigurationFile(args.xmlfile, verbose=not getattr(args, 'quiet', False))

names = current_job.getParameterNames()
minpar, maxpar = current_job.getParameterBounds()
Expand Down

0 comments on commit 9d5972b

Please sign in to comment.