From 4161d97f24f647afc93a0ffc85f4259dda857a82 Mon Sep 17 00:00:00 2001 From: Kipp Cannon <kipp.cannon@ligo.org> Date: Tue, 1 May 2018 17:06:51 +0900 Subject: [PATCH] inspiral_lr: fix cut-and-paste typo in I/O code --- gstlal-inspiral/python/stats/inspiral_lr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstlal-inspiral/python/stats/inspiral_lr.py b/gstlal-inspiral/python/stats/inspiral_lr.py index c0fb0cdbc3..a6c2ea6c05 100644 --- a/gstlal-inspiral/python/stats/inspiral_lr.py +++ b/gstlal-inspiral/python/stats/inspiral_lr.py @@ -212,7 +212,7 @@ class LnLRDensity(snglcoinc.LnLRDensity): @classmethod def from_xml(cls, xml, name): xml = cls.get_xml_root(xml, name) - template_ids = ligolw_param.get_pyvalue(xml, u"template_ids"), + template_ids = ligolw_param.get_pyvalue(xml, u"template_ids") if template_ids is not None: template_ids = frozenset(int(i) for i in template_ids.split(",")) self = cls( -- GitLab