summaryrefslogtreecommitdiffstats
path: root/scripts/abrt-bz-stats
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/abrt-bz-stats')
-rwxr-xr-xscripts/abrt-bz-stats4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/abrt-bz-stats b/scripts/abrt-bz-stats
index 3e38c528..fd222dc9 100755
--- a/scripts/abrt-bz-stats
+++ b/scripts/abrt-bz-stats
@@ -115,7 +115,9 @@ class Month:
Top five components causing crash this month.
Returns list of tuples (component, number of crashes)
"""
- return reversed(sorted(self.components.items(), key=lambda x: x[1]))[0:5]
+ result = sorted(self.components.items(), key=lambda x: x[1])
+ result.reverse()
+ return result[0:5]
def closed_as_useful_percentage(self):
return int(100 * self.closed_as_useful / self.closed())