From 9a5175a3fad2564d91d459aa76f8de4d02cbdfbc Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Thu, 19 Apr 2018 10:28:15 +1200 Subject: [PATCH] yet another validation edge case in the identity screen --- subiquity/ui/views/identity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subiquity/ui/views/identity.py b/subiquity/ui/views/identity.py index ff6d905a..8b79b686 100644 --- a/subiquity/ui/views/identity.py +++ b/subiquity/ui/views/identity.py @@ -217,7 +217,7 @@ class IdentityView(BaseView): if val is not None: self.form_rows.body.focus += 2 self.form.ssh_import_id_value = val - if iu.value != "": + if iu.value != "" or val is None: iu.validate() def done(self, result):