0001911: fixed sorting on counts

svn: r10257
This commit is contained in:
Doug Blank 2008-03-10 13:07:08 +00:00
parent 8705eabf39
commit f0badfef30

View File

@ -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 -------------------------