Include type when listing records.

Change-Id: I09b1ed71f593173ea6661165c9b16bbe64e1ca27
This commit is contained in:
Kiall Mac Innes 2013-04-13 18:11:28 +01:00
parent d9188704f4
commit 8b33e3248f

@ -23,7 +23,7 @@ LOG = logging.getLogger(__name__)
class ListRecordsCommand(base.ListCommand):
""" List Records """
columns = ['id', 'name']
columns = ['id', 'type', 'name']
def get_parser(self, prog_name):
parser = super(ListRecordsCommand, self).get_parser(prog_name)