From 8117256d7dc1464e86382db5c480d33b01131854 Mon Sep 17 00:00:00 2001
From: Chris Johnson <wchrisjohnson@gmail.com>
Date: Fri, 21 Mar 2014 11:16:25 -0400
Subject: [PATCH] Correct display of project/tenant id on display of
 credentials

This change corrects the display of ec2 credentails within the
ListEC2Creds method. Added explicit headers and corrected data listt o
specify tenant_id instead of project id.

Change-Id: I2ea579082bee800d774f202bdc38e2d546e57e77
Closes-Bug: #1292337
---
 openstackclient/identity/v2_0/ec2creds.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/openstackclient/identity/v2_0/ec2creds.py b/openstackclient/identity/v2_0/ec2creds.py
index cb3a51658f..cb60b677ca 100644
--- a/openstackclient/identity/v2_0/ec2creds.py
+++ b/openstackclient/identity/v2_0/ec2creds.py
@@ -135,9 +135,11 @@ class ListEC2Creds(lister.Lister):
             # Get the user from the current auth
             user = identity_client.auth_user_id
 
-        columns = ('Access', 'Secret', 'Project ID', 'User ID')
+        columns = ('access', 'secret', 'tenant_id', 'user_id')
+        column_headers = ('Access', 'Secret', 'Project ID', 'User ID')
         data = identity_client.ec2.list(user)
-        return (columns,
+
+        return (column_headers,
                 (utils.get_item_properties(
                     s, columns,
                     formatters={},