Skip to content
Snippets Groups Projects
Commit 5bf2711a authored by Cody Messick's avatar Cody Messick
Browse files

gstlal_inspiral: Pass paths to gzip test instead of urls

parent fb56413d
No related branches found
Tags gstlal-calibration-0.99-v1
No related merge requests found
......@@ -602,8 +602,8 @@ for output_file_number, (svd_bank_url_dict, output_url, likelihood_url_namedtupl
if options.data_source not in ("lvshm", "framexmit") and output_url.endswith('.gz'):
try:
subprocess.check_call(["gzip", "--test", output_url])
subprocess.check_call(["gzip", "--test", likelihood_url_namedtuple[0]])
subprocess.check_call(["gzip", "--test", ligolw_utils.local_path_from_url(output_url)])
subprocess.check_call(["gzip", "--test", ligolw_utils.local_path_from_url(likelihood_url_namedtuple[0])])
# File is OK and there is no need to process it, skip ahead in the loop
continue
except subprocess.CalledProcessError:
......
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