1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 01:36:27 +00:00

Updated to psutil 2.0

This commit is contained in:
Paweł Jastrzębski
2014-03-13 21:58:15 +01:00
parent e491fca445
commit d77498405b
5 changed files with 5 additions and 9 deletions

View File

@@ -32,7 +32,7 @@ if sys.version_info[0] != 3:
missing = []
try:
# noinspection PyUnresolvedReferences
from psutil import TOTAL_PHYMEM, Popen
from psutil import virtual_memory, Popen
except ImportError:
missing.append('psutil')
try: