From 6c7141886f28f4e7f6ac5e65fa64bf2552893b3d Mon Sep 17 00:00:00 2001 From: Behdad Fariba Date: Tue, 17 Mar 2015 16:30:00 -0700 Subject: [PATCH] Fixing typo in Cinder API Fixing typo in the comment of Cinder API Change-Id: Ic69816c974d286dfce13df3736466c83d94e4947 Closes-Bug: #1433353 --- openstack_dashboard/api/cinder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openstack_dashboard/api/cinder.py b/openstack_dashboard/api/cinder.py index 05612edfe4..4961737f4f 100644 --- a/openstack_dashboard/api/cinder.py +++ b/openstack_dashboard/api/cinder.py @@ -213,8 +213,8 @@ def volume_get(request, volume_id): instance = nova.server_get(request, attachment['server_id']) attachment['instance_name'] = instance.name else: - # Nova volume can occasionally send back error'd attachments - # the lack a server_id property; to work around that we'll + # Nova volume can occasionally send attachments in error state + # that lack a server_id property; to work around that we'll # give the attached instance a generic name. attachment['instance_name'] = _("Unknown instance")