From 018cf806e2d852df164b0c795d4e3ffcd122dda0 Mon Sep 17 00:00:00 2001 From: Shivesh Mandalia Date: Fri, 28 Feb 2020 22:38:40 +0000 Subject: add brackets to all print statements --- scripts/contour.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/contour.py') diff --git a/scripts/contour.py b/scripts/contour.py index 6f08617..cbb6c87 100644 --- a/scripts/contour.py +++ b/scripts/contour.py @@ -194,10 +194,10 @@ def main(): prefix = '' outfile = args.datadir + '/contour' + prefix + gen_identifier(args) - print '== {0:<25} = {1}'.format('outfile', outfile) + print('== {0:<25} = {1}'.format('outfile', outfile)) - print 'asimov_paramset', asimov_paramset - print 'hypo_paramset', hypo_paramset + print('asimov_paramset', asimov_paramset) + print('hypo_paramset', hypo_paramset) if args.run_mcmc: gf_utils.setup_fitter(args, asimov_paramset) @@ -250,7 +250,7 @@ def main(): labels = labels ) - print "DONE!" + print("DONE!") main.__doc__ = __doc__ -- cgit v1.2.3