in tools/plugins.py [0:0]
def _get_matrix_header(state, is_empty):
if state == PluginState.ACTIVE:
if is_empty:
return "Not Started"
else:
return "Active"
else:
if is_empty:
return "Deprecated, not started"
else:
return "Deprecated"