Skip to content

Commit

Permalink
Fix bug in make_template.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Lazarus committed Dec 16, 2015
1 parent db29f84 commit 4f85071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make_template.py
Expand Up @@ -82,7 +82,7 @@ def make_template(outdir, psrname, stage, rcvr, max_span=1, min_snr=0):
else:
raise errors.InputError("Output directory (%s) doesn't exist!" %
outdir)
filerows = list_files.get_files(psrname, stage, rcvr)
filerows = list_files.get_files([psrname], stage, rcvr)
print "Found %d matching files" % len(filerows)
fns = get_files_to_combine(filerows, max_span, min_snr)
if not fns:
Expand Down

0 comments on commit 4f85071

Please sign in to comment.