Skip to content

Commit

Permalink
added pftelDB param
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Nov 1, 2023
1 parent 4abddb2 commit 61dfd77
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dicom_repack.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
_ _ _ _
Expand All @@ -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.
Expand Down

0 comments on commit 61dfd77

Please sign in to comment.