From a7f78af31ad0dfae4a5144fc626d24d0897a910d Mon Sep 17 00:00:00 2001 From: Karel Klic Date: Fri, 22 Jan 2010 11:20:00 +0100 Subject: Added parameter N (count) to top_crashers --- scripts/abrt-bz-stats | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/abrt-bz-stats b/scripts/abrt-bz-stats index fd222dc9..78686bb3 100755 --- a/scripts/abrt-bz-stats +++ b/scripts/abrt-bz-stats @@ -110,14 +110,14 @@ class Month: result += component return result - def top_crashers(self): + def top_crashers(self, n = 10): """ - Top five components causing crash this month. + Top n components causing crash this month. Returns list of tuples (component, number of crashes) """ result = sorted(self.components.items(), key=lambda x: x[1]) result.reverse() - return result[0:5] + return result[0:n] def closed_as_useful_percentage(self): return int(100 * self.closed_as_useful / self.closed()) -- cgit