diff options
| author | Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com> | 2017-03-28 04:02:53 -0500 |
|---|---|---|
| committer | Patrick Williams <patrick@stwcx.xyz> | 2017-03-28 12:10:37 +0000 |
| commit | 93daccf77f24c8d8f0b9fdc739e102a662eef8df (patch) | |
| tree | 6b526beb0e297df5ee52514a077f70b65c86bc87 | |
| parent | dc0dc12bc812278c4a1d1ced740fed17ae3495db (diff) | |
| download | pyphosphor-93daccf77f24c8d8f0b9fdc739e102a662eef8df.tar.gz pyphosphor-93daccf77f24c8d8f0b9fdc739e102a662eef8df.zip | |
Corrected sensor name from PsRedundancy to PowerSupplyRedundancy
resolves openbmc/openbmc#1391
Change-Id: Iba7d2af745f8e30e42fd447b8cc3f05cb76c9eb5
Signed-off-by: Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>
| -rw-r--r-- | obmc/sensors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/obmc/sensors.py b/obmc/sensors.py index d3faef9..ca7be3c 100644 --- a/obmc/sensors.py +++ b/obmc/sensors.py @@ -299,7 +299,7 @@ class OperatingSystemStatusSensor(VirtualSensor): class PowerSupplyRedundancySensor(VirtualSensor): def __init__(self, bus, name): VirtualSensor.__init__(self, bus, name) - super(PsRedundancySensor,self).setValue("Disabled") + super(PowerSupplyRedundancySensor,self).setValue("Disabled") ## override setValue method @dbus.service.method( |

