1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 09:46:25 +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

2
kcc.py
View File

@@ -37,7 +37,7 @@ except ImportError:
missing.append('PyQt5')
try:
# noinspection PyUnresolvedReferences
from psutil import TOTAL_PHYMEM, Popen
from psutil import virtual_memory, Popen
except ImportError:
missing.append('psutil')
try: