Skip to content

Commit

Permalink
fix prev commit
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Dec 26, 2023
1 parent d645a9c commit 70875e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py/minimint/mist_interpolator.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def getheader(f):


def read_grid(eep_prefix, outp_prefix):
fs = glob.glob(os.path.join([eep_prefix, '*EEPS', '*eep']))
fs = glob.glob(os.path.join(eep_prefix, '*EEPS', '*eep'))
assert (len(fs) > 0)
tmpfile = utils.tail_head(fs[0], 11, 10)
tab0 = atpy.Table().read(tmpfile, format='ascii.fast_commented_header')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def read(fname):
VERSIONPIP = read('version.txt').rstrip()
VERSION = VERSIONPIP + get_revision()

with open(os.path.join(['py', 'minimint', '_version.py']), 'w') as fp:
with open(os.path.join('py', 'minimint', '_version.py'), 'w') as fp:
print('version="%s"' % (VERSION), file=fp)

setup(
Expand Down

0 comments on commit 70875e6

Please sign in to comment.