0001911: fixed sorting on counts

svn: r10258
This commit is contained in:
Doug Blank 2008-03-10 13:09:17 +00:00
parent 4a30aaeca3
commit 3b27bdaefb

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