From b0c5b270779d858933f56eab6c38399843038e8a Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Sat, 24 Jul 2021 11:45:30 -0600 Subject: [PATCH] lf_check.py typo on verion -> version Signed-off-by: Chuck SmileyRekiere --- py-scripts/tools/lf_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-scripts/tools/lf_check.py b/py-scripts/tools/lf_check.py index 5c529f80..6c9adc05 100755 --- a/py-scripts/tools/lf_check.py +++ b/py-scripts/tools/lf_check.py @@ -217,7 +217,7 @@ class lf_check(): #ssh.connect(self.lf_mgr_ip, port=22, username=self.lf_mgr_user, password=self.lf_mgr_pass, banner_timeout=600) ssh.connect(hostname=self.lf_mgr_ip, port=22, username=self.lf_mgr_user, password=self.lf_mgr_pass, banner_timeout=600) stdin, stdout, stderr = ssh.exec_command('uname -r') - lanforge_kernel_verion = stdout.readlines() + lanforge_kernel_version = stdout.readlines() # print('\n'.join(output)) ssh.close() time.sleep(1)