summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/admin/networks
diff options
context:
space:
mode:
authorDavid Lyle <david.lyle@hp.com>2013-06-21 11:16:45 -0600
committerDavid Lyle <david.lyle@hp.com>2013-06-21 11:17:44 -0600
commite976f6dd3fcee674be6cee9cd259cdf9f1b7a1db (patch)
treebe25d0a0bfde87e86dc4bfddd9049414609c235b /openstack_dashboard/dashboards/admin/networks
parentc1d26e6935f77597acba84550c6900f5c49068da (diff)
downloadhorizon-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.py2
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])