aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/fr.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/fr.py')
-rw-r--r--scripts/fr.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/fr.py b/scripts/fr.py
index e32d7d0..25cc1f8 100644
--- a/scripts/fr.py
+++ b/scripts/fr.py
@@ -171,13 +171,13 @@ def main():
outfile = args.datadir + '/{0}/{1}/chains_'.format(
*map(misc_utils.parse_enum, [args.stat_method, args.data])
) + misc_utils.gen_identifier(args)
- print '== {0:<25} = {1}'.format('outfile', outfile)
+ print('== {0:<25} = {1}'.format('outfile', outfile))
if args.run_mcmc:
gf_utils.setup_fitter(args, asimov_paramset)
- print 'asimov_paramset', asimov_paramset
- print 'llh_paramset', llh_paramset
+ print('asimov_paramset', asimov_paramset)
+ print('llh_paramset', llh_paramset)
ln_prob = partial(
llh_utils.ln_prob,
@@ -240,7 +240,7 @@ def main():
labels = labels,
ranges = ranges
)
- print "DONE!"
+ print("DONE!")
main.__doc__ = __doc__