Merge "Fix datastore abnormal display with trove backup-show"

This commit is contained in:
Zuul 2017-12-01 05:01:39 +00:00 committed by Gerrit Code Review
commit dc48bc0835
1 changed files with 6 additions and 0 deletions

View File

@ -143,6 +143,12 @@ def _print_object(obj):
obj._info['id'] = obj.id
del(obj._info['str_id'])
# Get datastore type and version, where necessary
if hasattr(obj, 'datastore'):
if 'type' in obj.datastore:
obj._info['datastore'] = obj.datastore['type']
obj._info['datastore_version'] = obj.datastore['version']
utils.print_dict(obj._info)