Skip to content

Commit

Permalink
fix pftree key error
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Oct 26, 2023
1 parent eecd369 commit d280295
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions pfdo_med2img/pfdo_med2img.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,13 @@ def define_parameters(self):
type = str,
optional= True,
default = "90")
self.add_argument("--syslog",
help="show outputs in syslog style",
dest='syslog',
action='store_true',
optional=True,
type=bool,
default=False)


def run(self, options):
Expand All @@ -442,6 +449,7 @@ def run(self, options):
"""
print(Gstr_title)
print('Version: %s' % self.get_version())
options.str_desc = ""

for k,v in options.__dict__.items():
print("%25s: [%s]" % (k, v))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name = 'pfdo_med2img',
version = '1.2.0',
version = '1.2.1',
description = 'An app to recursively walk down a directory tree and perform bulk med2image on files/dirs.',
long_description = readme,
author = 'Arushi Vyas',
Expand Down

0 comments on commit d280295

Please sign in to comment.