Merge "Consume openstackclient.common.command in subnet/port"

This commit is contained in:
Jenkins 2016-02-02 06:31:01 +00:00 committed by Gerrit Code Review
commit e628d5202c
2 changed files with 3 additions and 4 deletions

View File

@ -13,7 +13,7 @@
"""Port action implementations""" """Port action implementations"""
from cliff import command from openstackclient.common import command
class DeletePort(command.Command): class DeletePort(command.Command):

View File

@ -13,8 +13,7 @@
"""Subnet action implementations""" """Subnet action implementations"""
from cliff import lister from openstackclient.common import command
from openstackclient.common import utils from openstackclient.common import utils
@ -31,7 +30,7 @@ _formatters = {
} }
class ListSubnet(lister.Lister): class ListSubnet(command.Lister):
"""List subnets""" """List subnets"""
def get_parser(self, prog_name): def get_parser(self, prog_name):