Updates term tenant to project in error messages
Fixes: bug #1193429 Change-Id: I07412d6909e4e9bf18e8d21a851e2652487e073f
This commit is contained in:
parent
c1d26e6935
commit
e976f6dd3f
@ -97,7 +97,7 @@ class AdminIndexView(tables.DataTableView):
|
||||
tenants, has_more = api.keystone.tenant_list(self.request)
|
||||
except:
|
||||
tenants = []
|
||||
msg = _('Unable to retrieve instance tenant information.')
|
||||
msg = _('Unable to retrieve instance project information.')
|
||||
exceptions.handle(self.request, msg)
|
||||
|
||||
full_flavors = SortedDict([(f.id, f) for f in flavors])
|
||||
|
@ -47,7 +47,7 @@ class IndexView(tables.DataTableView):
|
||||
tenants, has_more = api.keystone.tenant_list(self.request)
|
||||
except:
|
||||
tenants = []
|
||||
msg = _('Unable to retrieve instance tenant information.')
|
||||
msg = _('Unable to retrieve instance project information.')
|
||||
exceptions.handle(self.request, msg)
|
||||
|
||||
tenant_dict = SortedDict([(t.id, t) for t in tenants])
|
||||
|
@ -54,7 +54,7 @@ class IndexView(tables.MultiTableView, VolumeTableMixIn):
|
||||
tenants, has_more = keystone.tenant_list(self.request)
|
||||
except:
|
||||
tenants = []
|
||||
msg = _('Unable to retrieve volume tenant information.')
|
||||
msg = _('Unable to retrieve volume project information.')
|
||||
exceptions.handle(self.request, msg)
|
||||
|
||||
tenant_dict = SortedDict([(t.id, t) for t in tenants])
|
||||
|
Loading…
Reference in New Issue
Block a user