diff options
Diffstat (limited to 'support/scripts/graph-build-time')
-rwxr-xr-x | support/scripts/graph-build-time | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/scripts/graph-build-time b/support/scripts/graph-build-time index 0ba0f2d3a7..9d05f2257a 100755 --- a/support/scripts/graph-build-time +++ b/support/scripts/graph-build-time @@ -184,7 +184,7 @@ def pkg_pie_time_per_package(data, output): labels = [] values = [] other_value = 0 - for p in data: + for p in sorted(data, key=lambda p: p.get_duration()): if p.get_duration() < (total * 0.01): other_value += p.get_duration() else: |