From c23d1dc75d91bc9955eb2676a233ed22c3fb2bee Mon Sep 17 00:00:00 2001 From: Zhenguo Niu Date: Thu, 4 Jun 2015 19:24:34 +0800 Subject: [PATCH] Delete period from select option in LiveMigrateForm It is unusual to have a period at the end of select options Change-Id: I02b8e91816e38ad4ba5ac317b270eb0a39013a32 --- openstack_dashboard/dashboards/admin/instances/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_dashboard/dashboards/admin/instances/forms.py b/openstack_dashboard/dashboards/admin/instances/forms.py index 92a0c193c7..efd2a10609 100644 --- a/openstack_dashboard/dashboards/admin/instances/forms.py +++ b/openstack_dashboard/dashboards/admin/instances/forms.py @@ -55,7 +55,7 @@ class LiveMigrateForm(forms.SelfHandlingForm): if host_list: host_list.insert(0, ("", _("Select a new host"))) else: - host_list.insert(0, ("", _("No other hosts available."))) + host_list.insert(0, ("", _("No other hosts available"))) return sorted(host_list) def handle(self, request, data):