Delete period from select option in LiveMigrateForm

It is unusual to have a period at the end of select options

Change-Id: I02b8e91816e38ad4ba5ac317b270eb0a39013a32
This commit is contained in:
Zhenguo Niu 2015-06-04 19:24:34 +08:00
parent 59e772ad4a
commit c23d1dc75d
1 changed files with 1 additions and 1 deletions

View File

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