Skip to content

Commit

Permalink
don't fail if empty
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Jan 10, 2024
1 parent f0a54d4 commit 902ccc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dicommake.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@



__version__ = '2.2.4'
__version__ = '2.2.6'

DISPLAY_TITLE = r"""
_ _ _ _
Expand Down Expand Up @@ -200,7 +200,7 @@ def tree2tree_path_mapping(inputdir: Path, outputdir: Path,
"""
return iter(
PathMapper.file_mapper(
inputdir, outputdir, glob=input_glob, suffix=output_suffix
inputdir, outputdir, glob=input_glob, suffix=output_suffix, fail_if_empty=False
)
)

Expand Down

0 comments on commit 902ccc0

Please sign in to comment.