From 9774d96f40919e6b7dccb55739bb4ed52c0b90ba Mon Sep 17 00:00:00 2001 From: Karel Klic Date: Thu, 21 Jan 2010 16:40:48 +0100 Subject: Fixed creation of top_five list --- scripts/abrt-bz-stats | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'scripts') 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()) -- cgit