added lower function for statuses

pull/18777/head
Lorenzo Luconi Trombacchi 10 years ago committed by Matt Clay
parent f65d83cea0
commit 9ee857180b

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

Loading…
Cancel
Save