Skip to content

Commit

Permalink
missed some os.path lines
Browse files Browse the repository at this point in the history
  • Loading branch information
RussBerg committed Dec 13, 2021
1 parent 9a0fe12 commit 5ead471
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nxdl/nxdl_to_hdf5.py
Original file line number Diff line number Diff line change
Expand Up @@ -1501,12 +1501,12 @@ def print_nxsfrmt_versions(class_nm):
def write_script_files(class_nm):
mod_name = 'h5py'
write_script(mod_name,
pathlib.PurePath(os.getcwd(), '..', 'autogenerated_examples','nxdl', 'python_scripts', mod_name),
pathlib.PurePath(pathlib.os.getcwd(), '..', 'autogenerated_examples','nxdl', 'python_scripts', mod_name),
class_nm,
h5py_script_lst)
mod_name = 'nexusformat'
write_script(mod_name,
pathlib.PurePath(mod_name, os.getcwd(), '..', 'autogenerated_examples','nxdl', 'python_scripts', mod_name),
pathlib.PurePath(mod_name, pathlib.os.getcwd(), '..', 'autogenerated_examples','nxdl', 'python_scripts', mod_name),
class_nm,
nxsfrmt_script_lst)

Expand Down

0 comments on commit 5ead471

Please sign in to comment.