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
2 changed files with 3 additions and 4 deletions

View File

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

View File

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