Skip to content

Commit

Permalink
bug fix in called AE title
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Oct 22, 2024
1 parent c6a0ec1 commit 176d037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dicom_dirSend.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
logger.opt(colors = True)
logger.add(sys.stderr, format=logger_format)

__version__ = '1.1.9'
__version__ = '1.2.0'

DISPLAY_TITLE = r"""
_ _ _ _ _ _____ _
Expand Down Expand Up @@ -119,7 +119,7 @@ def main(options: Namespace, inputdir: Path, outputdir: Path):
mapper = PathMapper.file_mapper(inputdir, outputdir, glob=f"**/*.{options.fileFilter}",fail_if_empty=False)
shell = jobber({'verbosity': 1, 'noJobLogging': True})
for input_file, output_file in mapper:
LOG(f"Sending input file: ---->{input_file.name}<---- to {options.aetTitle}")
LOG(f"Sending input file: ---->{input_file.name}<---- to {options.calledAETitle}")
str_cmd = (f"dcmsend"
f" -aet {options.aeTitle}"
f" -aec {options.calledAETitle}"
Expand Down

0 comments on commit 176d037

Please sign in to comment.