diff --git a/glances/cpu_percent.py b/glances/cpu_percent.py index f8b24e61..65bfa154 100644 --- a/glances/cpu_percent.py +++ b/glances/cpu_percent.py @@ -65,7 +65,7 @@ class CpuPercent: def __get_cpu_name(self): # Get the CPU name once from the /proc/cpuinfo file - # Read the first line with the "model name" + # Read the first line with the "model name" ("Model" for Raspberry Pi) ret = None try: cpuinfo_file = open('/proc/cpuinfo').readlines() @@ -73,7 +73,7 @@ class CpuPercent: pass else: for line in cpuinfo_file: - if line.startswith('model name'): + if line.startswith('model name') or line.startswith('Model'): ret = line.split(':')[1].strip() break return ret if ret else 'CPU'