From e91c2343b03685d2f995f87a30bb432e74b2d652 Mon Sep 17 00:00:00 2001 From: Duncan Macleod Date: Tue, 19 Mar 2019 16:18:57 -0500 Subject: [PATCH] gw_summary_pipe: use gwdatafind --- bin/gw_summary_pipe | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/gw_summary_pipe b/bin/gw_summary_pipe index afe568e0..ec70c07a 100644 --- a/bin/gw_summary_pipe +++ b/bin/gw_summary_pipe @@ -29,7 +29,9 @@ import os import shutil from multiprocessing import cpu_count -from glue import (datafind, pipeline) +from gwdatafind.utils import find_credential + +from glue import pipeline from gwpy.io import kerberos as gwkerberos @@ -289,7 +291,7 @@ if opts.verbose: if opts.universe != 'local': # copy X509 grid certificate into local location - x509cert, x509key = datafind.find_credential() + x509cert, x509key = find_credential() x509copy = os.path.join(etcdir, os.path.basename(x509cert)) shutil.copyfile(x509cert, x509copy)