From: Michael Tremer Date: Fri, 28 Apr 2023 08:44:11 +0000 (+0000) Subject: hub: Correctly read the CPU model X-Git-Tag: 0.9.29~179 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9a944c72cffa65d1390b844a7ed182869e0173a;p=pakfire.git hub: Correctly read the CPU model Signed-off-by: Michael Tremer --- 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,