Changed status() to be case-sensitive of process

This commit is contained in:
Rob White 2015-01-22 11:01:33 +11:00 committed by Matt Clay
parent ccd3044ea5
commit ef8ca7c063

View file

@ -75,8 +75,8 @@ def main():
# Sample output lines:
# Process 'name' Running
# Process 'name' Running - restart pending
parts = line.lower().split()
if len(parts) > 2 and parts[0] == 'process' and parts[1] == "'%s'" % name:
parts = line.split()
if len(parts) > 2 and parts[0] == 'Process' and parts[1] == "'%s'" % name:
return ' '.join(parts[2:])
else:
return ''