Skip to content

Commit

Permalink
gw_summary_pipe: use gwdatafind
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmmacleod committed Mar 19, 2019
1 parent 2ec602d commit e91c234
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/gw_summary_pipe
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)

Expand Down

0 comments on commit e91c234

Please sign in to comment.