aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Sensors.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components/Sensors.py')
-rw-r--r--lib/python/Components/Sensors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Sensors.py b/lib/python/Components/Sensors.py
index 7f63455b..8898a030 100644
--- a/lib/python/Components/Sensors.py
+++ b/lib/python/Components/Sensors.py
@@ -67,6 +67,6 @@ class Sensors:
self.sensors_list.append((self.TYPE_TEMPERATURE, name, unit, "/proc/stb/sensors/%s" % dirname))
for fanid in range(fancontrol.getFanCount()):
if fancontrol.hasRPMSensor(fanid):
- self.sensors_list.append((self.TYPE_FAN_RPM, _("fan"), "rpm", fanid))
+ self.sensors_list.append((self.TYPE_FAN_RPM, _("Fan %d") % (fanid + 1), "rpm", fanid))
sensors = Sensors() \ No newline at end of file