Skip to content
Snippets Groups Projects
Commit b33bec8a authored by Kipp Cannon's avatar Kipp Cannon
Browse files

inspiral.py: fix extension used for temp files

- template bank files are .xml.gz files
parent 392fed54
No related branches found
No related tags found
No related merge requests found
......@@ -195,7 +195,7 @@ def parse_bank_files(svd_banks, verbose, snr_threshold = None):
# trigger generator
# FIXME teach the trigger generator to get this
# information a better way
bank.template_bank_filename = tempfile.NamedTemporaryFile(suffix = ".gz", delete = False).name
bank.template_bank_filename = tempfile.NamedTemporaryFile(suffix = ".xml.gz", delete = False).name
xmldoc = ligolw.Document()
# FIXME if this table reference is from a DB this
# is a problem (but it almost certainly isn't)
......
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