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:
dharmendra
2016-01-22 11:00:55 +05:30
parent 8a64606654
commit 3b96c5f534

View File

@@ -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',