diff --git a/hwbench/environment/cpu_info.py b/hwbench/environment/cpu_info.py index 027d75c..c931070 100644 --- a/hwbench/environment/cpu_info.py +++ b/hwbench/environment/cpu_info.py @@ -60,7 +60,10 @@ def get_model(self) -> int: return int(self._mandatory_spec("Model")) def get_model_name(self) -> str: - return self._mandatory_spec("Model name") + try: + return self._mandatory_spec("Model name") + except ValueError as _: + return self._mandatory_spec("BIOS Model name") def get_stepping(self) -> int: return int(self._mandatory_spec("Stepping"))