view Plugins/Samples/ModalityWorklists/WorklistsDatabase/Generate.py @ 3471:1fdbe5885783

fix unit tests: removed \r from the expected string since we removed it when generating the log line
author Alain Mazy <alain@mazy.be>
date Thu, 11 Jul 2019 13:29:50 +0200
parents 138664eb59de
children 76b3228f99b0
line wrap: on
line source

#!/usr/bin/python

import os
import subprocess

SOURCE = '/home/jodogne/Downloads/dcmtk-3.6.0/dcmwlm/data/wlistdb/OFFIS/'
TARGET = os.path.abspath(os.path.dirname(__file__))

for f in os.listdir(SOURCE):
    ext = os.path.splitext(f)

    if ext[1].lower() == '.dump':
        subprocess.check_call([
            'dump2dcm',
            '-g',
            '-q',
            os.path.join(SOURCE, f),
            os.path.join(TARGET, ext[0].lower() + '.wl'),
        ])