Remove compat checks for psutil 1.x

We're depending on much newer psutil (3.x at least), so the 1.x
code path doesn't get executed anymore.

Change-Id: I335ebc0e8e49f20be7d05c968f0ddc79e5307820
This commit is contained in:
Dirk Mueller 2017-07-29 08:59:55 +02:00
parent 9b1168ac71
commit 3a15d1a710
2 changed files with 2 additions and 5 deletions

View File

@ -150,7 +150,7 @@ test execution.
:: ::
psutil>=1.1.1,<2.0.0 psutil>=3.2.2 # BSD
psycopg2 psycopg2
PyMySQL>=0.6.2 # MIT License PyMySQL>=0.6.2 # MIT License

View File

@ -110,10 +110,7 @@ class TestNeutronServer(base.BaseTestCase):
def safe_ppid(proc): def safe_ppid(proc):
try: try:
if psutil.version_info[0] == 1: return proc.ppid()
return proc.ppid
else:
return proc.ppid()
except psutil.NoSuchProcess: except psutil.NoSuchProcess:
return None return None