diff --git a/Scripts/platforms/windows.py b/Scripts/platforms/windows.py index e299184..f8c6931 100755 --- a/Scripts/platforms/windows.py +++ b/Scripts/platforms/windows.py @@ -170,7 +170,7 @@ class WindowsHardwareInfo: cpus = c.Win32_Processor() cpu_brand = cpus[-1].Manufacturer - cpu_model = cpus[-1].Name.split("CPU")[0].strip() + cpu_model = cpus[-1].Name.split("with")[0].split("@")[0].strip() cpu_description = cpus[-1].Description number_of_cores = cpus[-1].NumberOfCores or 0