diff options
| author | Steve Martinelli <stevemar@ca.ibm.com> | 2015-06-28 23:43:39 -0400 |
|---|---|---|
| committer | Steve Martinelli <stevemar@ca.ibm.com> | 2015-06-28 23:43:39 -0400 |
| commit | 36613f9f53435ac9f3fb8badfa8ecb82e71b9fad (patch) | |
| tree | b19f0d73110af150982520697496d83e08f328b7 /openstackclient | |
| parent | 1d51eb82d05bce9b78ad289378e7d656511933d9 (diff) | |
| download | python-openstackclient-36613f9f53435ac9f3fb8badfa8ecb82e71b9fad.tar.gz | |
No need for get_parser on QoS list
There are no arguments so there's no need to define the
get_parser function.
Change-Id: Icfa8accf6dbb7f8d1a0472926403b405da3cc611
Diffstat (limited to 'openstackclient')
| -rw-r--r-- | openstackclient/volume/v1/qos_specs.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/openstackclient/volume/v1/qos_specs.py b/openstackclient/volume/v1/qos_specs.py index 74429481..eacb9706 100644 --- a/openstackclient/volume/v1/qos_specs.py +++ b/openstackclient/volume/v1/qos_specs.py @@ -175,10 +175,6 @@ class ListQos(lister.Lister): log = logging.getLogger(__name__ + '.ListQos') - def get_parser(self, prog_name): - parser = super(ListQos, self).get_parser(prog_name) - return parser - def take_action(self, parsed_args): self.log.debug('take_action(%s)', parsed_args) volume_client = self.app.client_manager.volume |
