@@ -16,20 +16,20 @@ def cli(env, identifier, discrete):
1616 mgr = SoftLayer .HardwareManager (env .client )
1717 sensors = mgr .get_sensors (identifier )
1818
19- temperature_table = formatting .Table (["sensor " , "status " , "Reading" , "min " , "Max" ],
20- title = 'temperature Degree c ' )
19+ temperature_table = formatting .Table (["Sensor " , "Status " , "Reading" , "Min " , "Max" ],
20+ title = 'Temperature (c) ' )
2121
22- volts_table = formatting .Table (["sensor " , "status " , "Reading" , "min " , "Max" ],
23- title = 'volts ' )
22+ volts_table = formatting .Table (["Sensor " , "Status " , "Reading" , "Min " , "Max" ],
23+ title = 'Volts ' )
2424
25- watts_table = formatting .Table (["sensor " , "status " , "Reading" ],
25+ watts_table = formatting .Table (["Sensor " , "Status " , "Reading" ],
2626 title = 'Watts' )
2727
28- rpm_table = formatting .Table (["sensor " , "status " , "Reading" , "min " ],
28+ rpm_table = formatting .Table (["Sensor " , "Status " , "Reading" , "Min " ],
2929 title = 'RPM' )
3030
31- discrete_table = formatting .Table (["sensor " , "status " , "Reading" ],
32- title = 'discrete ' )
31+ discrete_table = formatting .Table (["Sensor " , "Status " , "Reading" ],
32+ title = 'Discrete ' )
3333
3434 for sensor in sensors :
3535 if sensor .get ('sensorUnits' ) == 'degrees C' :
0 commit comments