summaryrefslogtreecommitdiff
path: root/psutil/_pssunos.py
diff options
context:
space:
mode:
authorJake Omann <jomann@nagios.com>2020-11-13 14:52:30 -0600
committerGitHub <noreply@github.com>2020-11-13 21:52:30 +0100
commitfd69f22ee5ca38ceff32ae3fac15420c5d8fce29 (patch)
tree72ca5fb2e29ee2a04ff7a16a8e060f5528588b6d /psutil/_pssunos.py
parent7050e73c48b38caf2f19409167ba8dfaa9ab9fd4 (diff)
downloadpsutil-fd69f22ee5ca38ceff32ae3fac15420c5d8fce29.tar.gz
Fix solaris swap output when 'encrypted' column exists (#1876)
Diffstat (limited to 'psutil/_pssunos.py')
-rw-r--r--psutil/_pssunos.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/_pssunos.py b/psutil/_pssunos.py
index c64ea9ca..2af15dfa 100644
--- a/psutil/_pssunos.py
+++ b/psutil/_pssunos.py
@@ -155,7 +155,7 @@ def swap_memory():
total = free = 0
for line in lines:
line = line.split()
- t, f = line[-2:]
+ t, f = line[3:4]
total += int(int(t) * 512)
free += int(int(f) * 512)
used = total - free