Updates term tenant to project in error messages

Fixes: bug #1193429

Change-Id: I07412d6909e4e9bf18e8d21a851e2652487e073f
This commit is contained in:
David Lyle 2013-06-21 11:16:45 -06:00
parent c1d26e6935
commit e976f6dd3f
3 changed files with 3 additions and 3 deletions

View File

@ -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])

View File

@ -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])

View File

@ -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])