Code correction while calling base class method
Correcting the way, while calling base class method in tackerclient/tacker/v1_0/extension.py Change-Id: I3d6cb9bade0557e2c157b85b3682bf74b5d617e3
This commit is contained in:
@@ -32,7 +32,7 @@ class ShowExt(cmd_base.ShowCommand):
|
||||
allow_names = False
|
||||
|
||||
def get_parser(self, prog_name):
|
||||
parser = super(cmd_base.ShowCommand, self).get_parser(prog_name)
|
||||
parser = super(ShowExt, self).get_parser(prog_name)
|
||||
cmd_base.add_show_list_common_argument(parser)
|
||||
parser.add_argument(
|
||||
'id', metavar='EXT-ALIAS',
|
||||
|
Reference in New Issue
Block a user