diff --git a/dicom_repack.py b/dicom_repack.py index 3fc123f..aa1ea2b 100644 --- a/dicom_repack.py +++ b/dicom_repack.py @@ -8,7 +8,7 @@ import pydicom as dicom import os from pflog import pflog -__version__ = '1.1.2' +__version__ = '1.1.3' DISPLAY_TITLE = r""" _ _ _ _ @@ -31,7 +31,11 @@ help='input file filter glob') parser.add_argument('-V', '--version', action='version', version=f'%(prog)s {__version__}') - +parser.add_argument( '--pftelDB', + dest = 'pftelDB', + default = '', + type = str, + help = 'optional pftel server DB path') # The main function of this *ChRIS* plugin is denoted by this ``@chris_plugin`` "decorator." # Some metadata about the plugin is specified here. There is more metadata specified in setup.py.