From e9a944c72cffa65d1390b844a7ed182869e0173a Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 28 Apr 2023 08:44:11 +0000 Subject: [PATCH] hub: Correctly read the CPU model Signed-off-by: Michael Tremer --- src/pakfire/hub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pakfire/hub.py b/src/pakfire/hub.py index 15ee9a377..a89705227 100644 --- a/src/pakfire/hub.py +++ b/src/pakfire/hub.py @@ -601,7 +601,7 @@ class ControlConnection(HubObject): "type" : "stats", "data" : { # CPU info - "cpu_model" : self.cpu.get("brand_raw"), + "cpu_model" : self.cpu.get("brand"), "cpu_count" : self.cpu.get("count"), "cpu_arch" : self.native_arch, -- 2.39.5