machine: fix typo in cpu description parser

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2022-03-02 19:25:53 -05:00
parent 26d6ca009a
commit 221df0937d
No known key found for this signature in database
GPG Key ID: 7027245FBBDDF59A
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ class Machine:
cpu_desc_match = re.search(r"model name\s+:\s+(.+)", item) cpu_desc_match = re.search(r"model name\s+:\s+(.+)", item)
if cpu_desc_match is not None: if cpu_desc_match is not None:
cpu_info['cpu_desc'] = cpu_desc_match.group(1).strip() cpu_info['cpu_desc'] = cpu_desc_match.group(1).strip()
continue break
hw_match = re.search(r"Hardware\s+:\s+(.+)", cpu_items[-1]) hw_match = re.search(r"Hardware\s+:\s+(.+)", cpu_items[-1])
if hw_match is not None: if hw_match is not None:
cpu_info['hardware_desc'] = hw_match.group(1).strip() cpu_info['hardware_desc'] = hw_match.group(1).strip()