diff options
author | David Lyle <david.lyle@hp.com> | 2013-06-21 11:16:45 -0600 |
---|---|---|
committer | David Lyle <david.lyle@hp.com> | 2013-06-21 11:17:44 -0600 |
commit | e976f6dd3fcee674be6cee9cd259cdf9f1b7a1db (patch) | |
tree | be25d0a0bfde87e86dc4bfddd9049414609c235b /openstack_dashboard/dashboards/admin/networks | |
parent | c1d26e6935f77597acba84550c6900f5c49068da (diff) | |
download | horizon-e976f6dd3fcee674be6cee9cd259cdf9f1b7a1db.tar.gz |
Updates term tenant to project in error messages
Fixes: bug #1193429
Change-Id: I07412d6909e4e9bf18e8d21a851e2652487e073f
Diffstat (limited to 'openstack_dashboard/dashboards/admin/networks')
-rw-r--r-- | openstack_dashboard/dashboards/admin/networks/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack_dashboard/dashboards/admin/networks/views.py b/openstack_dashboard/dashboards/admin/networks/views.py index 48efa9031..cd0167bd6 100644 --- a/openstack_dashboard/dashboards/admin/networks/views.py +++ b/openstack_dashboard/dashboards/admin/networks/views.py @@ -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]) |