diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2017-01-24 17:40:51 +0100 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2017-01-24 17:40:51 +0100 |
| commit | b64b87943b2e1d5955db90a94de611bf2c4bad2a (patch) | |
| tree | bddeb9517d98e34e9b9d1707002b194a2a130186 /psutil/_common.py | |
| parent | 1818df036f4ab4b851e8cc0dd15f0bf28d8640f8 (diff) | |
| download | psutil-b64b87943b2e1d5955db90a94de611bf2c4bad2a.tar.gz | |
#371: temperatures: change returned data type from list to dict
Diffstat (limited to 'psutil/_common.py')
| -rw-r--r-- | psutil/_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/_common.py b/psutil/_common.py index 8866ef19..0d965ac1 100644 --- a/psutil/_common.py +++ b/psutil/_common.py @@ -160,7 +160,7 @@ scpustats = namedtuple( scpufreq = namedtuple('scpufreq', ['current', 'min', 'max']) # psutil.sensors_temperatures() shwtemp = namedtuple( - 'shwtemp', ['name', 'label', 'current', 'high', 'critical']) + 'shwtemp', ['label', 'current', 'high', 'critical']) # --- for Process methods |
