Skip to content

Commit

Permalink
forgotten default
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Aug 23, 2023
1 parent 380816a commit bb5fd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythena_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def run(self, odir_input, plot):
# remove the forward slash at the end if there is one
odir = odir_input.text()
# create odir (including intermediaries if needed)
os.makedirs(odir)
os.makedirs(odir,exist_ok=True)
if odir[-1] == '/':
odir = odir[:-1]
# remove the hst file since it always gets appended to
Expand Down

0 comments on commit bb5fd94

Please sign in to comment.