From f0badfef308c59888f4ef7cb8db955098f1d2d1b Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Mon, 10 Mar 2008 13:07:08 +0000 Subject: [PATCH] 0001911: fixed sorting on counts svn: r10257 --- src/plugins/StatisticsChart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/StatisticsChart.py b/src/plugins/StatisticsChart.py index 2b1773bf6..d82f6b152 100644 --- a/src/plugins/StatisticsChart.py +++ b/src/plugins/StatisticsChart.py @@ -263,7 +263,7 @@ class Extract: def get_handle_count(self, data): "return number of handles in given (person, handle_list) used for child count, family count" - return [str(len(data[1]))] + return ["%3d" % len(data[1])] # ------------------- utility methods -------------------------