This commit is contained in:
Andrei V. Ostapenko 2014-05-18 17:13:07 +03:00
parent e57e8a16b2
commit 401c4bb016
1 changed files with 2 additions and 2 deletions

View File

@ -102,8 +102,8 @@ class ShowIndex(ShowTable):
resource_path = ('table', 'local_secondary_indexes')
log = logging.getLogger(__name__ + '.ShowIndex')
def _get_resource(self, data, parsed_args):
data = super(ShowIndex, self)._get_resource(data, parsed_args)
def _get_info(self, data, parsed_args):
data = super(ShowIndex, self)._get_info(data, parsed_args)
index_name = parsed_args.index_name
for index in data:
if index['index_name'] == parsed_args.index_name: