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:
parent
59e772ad4a
commit
c23d1dc75d
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user