tool/metrics: print func count

This commit is contained in:
Matthias Ringwald 2019-11-26 17:39:22 +01:00
parent a4fcae569e
commit 3ce65d0ff3

View File

@ -139,7 +139,8 @@ def list_metrics_table():
max = metrics[metric_name + '_MAX']
print ( row % ( metric_name, target, deviations, max))
else:
print ( row % ( metric_name, '', '', ''))
max = metrics[metric_name]
print ( row % ( metric_name, '', '', max))
def list_deviations():
global metrics