Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Dec 27, 2023
1 parent 1f4ece8 commit 8728726
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions py/minimint/mist_interpolator.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ def read_grid(eep_prefix, outp_prefix):
fs = glob.glob(mask)
if len(fs) == 0:
raise RuntimeError(f'Failed to find eep files {mask}' +
str(os.path.join(eep_prefix, '*')) + '\n' +
str(os.path.join(eep_prefix, '*', '*')))
str(glob.glob(os.path.join(eep_prefix, '*'))) +
'\r\n' +
str(glob.glob(os.path.join(eep_prefix, '*', '*'))))
tmpfile = utils.tail_head(fs[0], 11, 10)
tab0 = atpy.Table().read(tmpfile, format='ascii.fast_commented_header')
os.unlink(tmpfile)
Expand Down

0 comments on commit 8728726

Please sign in to comment.