Browse Source

Merge pull request #11 from k3oni/dev

from Dev
windows
Florian N 9 years ago
committed by GitHub
parent
commit
5197c5957b
  1. 2
      pydash/services.py

2
pydash/services.py

@ -211,7 +211,7 @@ def get_mem():
"""
try:
pipe = os.popen(
"free -tmo | " + "grep 'Mem' | " + "awk '{print $2,$4,$6,$7}'")
"free -tm | " + "grep 'Mem' | " + "awk '{print $2,$4,$6,$7}'")
data = pipe.read().strip().split()
pipe.close()

Loading…
Cancel
Save