Merge pull request #31900 from rallytime/fix-psutil-warning

Add "python module" clarification to ps __virtual__ warning.
This commit is contained in:
Nicole Thomas 2016-03-15 11:59:35 -06:00
commit 471c9444a3

View File

@ -27,7 +27,7 @@ except ImportError:
def __virtual__():
if not HAS_PSUTIL:
return False, 'The ps module cannot be loaded: psutil not installed.'
return False, 'The ps module cannot be loaded: python module psutil not installed.'
# Functions and attributes used in this execution module seem to have been
# added as of psutil 0.3.0, from an inspection of the source code. Only