Skip to content

Commit

Permalink
another debug
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Dec 27, 2023
1 parent cbb180b commit 1f4ece8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion py/minimint/mist_interpolator.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ def read_grid(eep_prefix, outp_prefix):
mask = os.path.join(eep_prefix, '*EEPS', '*eep')
fs = glob.glob(mask)
if len(fs) == 0:
raise RuntimeError(f'Failed to find eep files {mask}')
raise RuntimeError(f'Failed to find eep files {mask}' +
str(os.path.join(eep_prefix, '*')) + '\n' +
str(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 1f4ece8

Please sign in to comment.