Skip to content
Snippets Groups Projects
Commit 0818d216 authored by Cort Posnansky's avatar Cort Posnansky
Browse files

inspiral_intrinsics.py: correct error formatting

parent 17623ea8
No related branches found
No related tags found
1 merge request!247inspiral_intrinsics.py: correct error formatting
Pipeline #427049 passed with warnings
......@@ -135,7 +135,7 @@ class SourcePopulationModel(object):
try:
template_indices[template_id] = numpy.where(model_ids==template_id)[0][0]
except IndexError:
raise IndexError("template ID %d is not in this model".format(template_id))
raise IndexError("template ID %d is not in this model" % template_id)
self.polys = dict((template_id, PPoly(coefficients[:,:,[template_indices[template_id]]], snr_bp)) for template_id in template_ids)
self.max_snr = snr_bp.max()
else:
......@@ -148,7 +148,7 @@ class SourcePopulationModel(object):
try:
lnP_vs_snr = self.polys[template_id]
except KeyError:
raise KeyError("template ID %d is not in this model".format(template_id))
raise KeyError("template ID %d is not in this model" % template_id)
# PPoly's .__call__() returns an array, so we need the
# final [0] to flatten it
return lnP_vs_snr(min(snr, self.max_snr))[0]
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