Keep 'process' lowercase to protect against upstream changes

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

View file

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