Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jotaylor committed Dec 8, 2023
1 parent bbe176e commit 2c4d90a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ullyses/create_ullyses_hlsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def make_lcogt_tss(indir, outdir, targ, hlspname=None, photfile=None):
if not os.path.exists(outdir):
os.makedirs(outdir)
outfile = os.path.join(outdir, hlspname)
ull_targname = match_aliases(hlsp_targname, "target_name_ullyses")
ull_targname = match_aliases.match_aliases(hlsp_targname, "target_name_ullyses")
U = Ullyses(files=filepaths, hlspname=outfile, targname=ull_targname,
cal_ver=__version__, version=__release__, level=5,
hlsp_type="lcogt", photfile=photfile)
Expand All @@ -73,7 +73,7 @@ def make_xsu_hlsps(infile, outdir, targ, hlspname=None):
if not os.path.exists(outdir):
os.makedirs(outdir)
outfile = os.path.join(outdir, hlspname)
ull_targname = match_aliases(hlsp_targname, "target_name_ullyses")
ull_targname = match_aliases.match_aliases(hlsp_targname, "target_name_ullyses")
U = Ullyses(files=[infile], hlspname=outfile, targname=ull_targname,
cal_ver=__version__, version=__release__, level=7,
hlsp_type="xsu", overwrite=True)
Expand Down

0 comments on commit 2c4d90a

Please sign in to comment.